• Resolved roxer82

    (@roxer82)


    I am using the theme SubLimenal and I would like to make but a bigger font for the children categories, I would like to have the same font size than the primary categories, how can I do it? thanks in advanced!

Viewing 3 replies - 1 through 3 (of 3 total)
  • In the stylesheet. You may want to google for styling nested lists.
    (hint: if in your style there is something about the lists in the sidebar, like
    #sidebar ul li { font... etc}
    you will need to add new declarations for every nested list:
    ul li li
    and
    ul li li li li...

    Thread Starter roxer82

    (@roxer82)

    Thanks for your answer, it says:

    #sidebar {
    float: left;
    margin-top: 20px;}

    How can I add the font size to the children categories?

    Insert the style into the stylesheet as the example below

    #sidebar ul{
    font-size: 14px;
    }

    #sidebar li{
    font-size: 12px;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Font size’ is closed to new replies.