Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #107929
    lucapizzonia
    Participant

    Hi,
    now my site is online (www.lucapizzonia.com).
    I’ve inserted four text widget in footer areas to show some information, but I would to use a different size font.
    How can I do this?

    Then, I would like to hide tagged link after each post. I’ve used
    footer.entry-meta { display: none; }
    in Custom CSS, but this line hide “Leave a reply” and “Edit” links too.
    How hide only tagged link?
    Thanks

    #107956
    Mahesh
    Keymaster

    @lucapizzonia: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
    * use a different size font

    #footer-sidebar .widget-title {
        font-size: 30px;
    }
    
    #footer-sidebar .textwidget {
        font-size: 20px;
    }

    Note: Please adjust the font size as desired.

    *hide tagged link after each post

    .entry-meta .sep, 
    .entry-meta .in-category, 
    .entry-meta .in-tag {
        display: none;
    }

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘change font size of text widget in footer and hide tagged link in post’ is closed to new replies.