• Does anybody know how to change the font size of the sidebar links (pages, categories, etc.) without changing the font size of the headers in the style.css? I’m trying to make the font size of the links match the font size of my text widget content. Any help will be much appreciated. Please be specific if you can, i’m a complete CSS ignoramus.

    https://www.jeanelleechols.com/donaana

Viewing 4 replies - 1 through 4 (of 4 total)
  • ‘ello again! ??

    Try editing style.css and changing:

    #sidebar {
    margin:3px;
    padding:0 5px 10px;
    position:relative;
    }

    to

    #sidebar {
    font-size:.85em;
    margin:3px;
    padding:0 5px 10px;
    position:relative;
    font-size:1.2em;
    }

    Then edit that block you added recently from:

    .entry p, .textwidget {
    font-size:0.85em;
    }

    to

    .entry p {
    font-size:0.85em;
    }

    Otherwise, the font size of your text widget will always be smaller than the rest of the sidebar.

    Thread Starter jmivaldi

    (@jmivaldi)

    thanks ?? do you know by any chance too how to add line separators between the side bar items, like these blog:

    https://www.hellolucky.com/wordpress/

    mine currently has none, thanks for your help ??

    Not sure if I’ve got the color right but try adding:

    #sidebar .widgettitle,#sidebar #searchform {
    border-top:1px dotted #B1C895;
    padding-top:15px;
    }

    to style.css

    Thread Starter jmivaldi

    (@jmivaldi)

    thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Font size of sidebar links (pages, categories, etc.)…’ is closed to new replies.