• Hey,
    I’m using WordPress 3.2 on http://www.makesmesmile.org/. Just installed a “Most Popular Posts” plug in and activated it on my sidebar. For some reason, the title of the category is a couple of pts smaller than the others. Not sure where/how to fix it?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • for some reason, the ‘popular post’ widget outputs a:
    h4.widgettitle
    instead of
    h2.widgettitle
    as the other widgets do.

    the size of h2 is defined here:

    h2 {
    	font-size: 1.8em;
    }

    therefore, add this to style.css:

    h4.widgettitle {
    	font-size: 1.8em;
    }

    Thread Starter nataliegluic

    (@nataliegluic)

    Yey! It worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing Font Size in Widget in Sidebar’ is closed to new replies.