Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #59829
    kathiejs
    Member

    I’m amazed that in just a few days I’ve managed to create a nice site and, thanks to Catchthemes and this forum, tweak it – with no previous experience and no knowledge of html or css (I’d never even heard of css!). Awesome 🙂

    There’s one tweak I haven’t been able to do, in spite of trying several things I found in the forum archives – increase the font size of the Categories list in the sidebar (the actual list, not the list title) and the breadcrumb trail (which is the Breadcrumb NavXT plugin).

    At the moment I’ve got .sidebar .widget { font-size: 16px; }

    My site is vintagevagabonds.net

    #59871
    Sakin
    Keymaster

    @kathiejs: You can change the size in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    /* Category Widget */
    #secondary .widget_categories ul { font-size: 16px; }
    /* breadcrumb Widget */
    #secondary .widget_breadcrumb_navxt { font-size: 16px; }
    #59909
    kathiejs
    Member

    That’s worked for the breadcrumbs, thanks, but it hasn’t made any difference to the categories list I’m afraid.

    #59932
    Sakin
    Keymaster

    @kathiejs: ok for category, replace previous css with the following:

    /* Category Widget */
    #secondary .widget_categories ul li { font-size: 16px; }
    #59955
    kathiejs
    Member

    Still no change, sorry

    #59961
    Sakin
    Keymaster

    @kathiejs: Please check your css with the css that I have posted in. It should be li and not il. You have css as below:
    #secondary .widget_categories ul il { font-size: 16px; }
    Where it should be as:
    #secondary .widget_categories ul li { font-size: 16px; }

    #59990
    kathiejs
    Member

    Sorry – tired eyes and a tiny screen. That’s fixed it, thanks

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Font size in sidebar widget’ is closed to new replies.