Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #57380
    Vivien
    Member

    Hi,
    how do I change the text size (font size) in the menus and the texts?

    Thanks
    Viv

    #57390
    Sakin
    Keymaster

    @Vivien: We don’t have font size option in theme options panel. So, you need to change it by adding custom css.

    So, change the font size in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    body, button, input, select, textarea, #header-right .widget .menu li {
        font-size: 14px;
    }
    #57572
    Vivien
    Member

    Great! Thank you!
    But how do I change the size of the submenu text?

    #57660
    Sakin
    Keymaster

    @Vivien: For which menu are you talking about. As Adventurous Pro theme have 3 custom menu location “Header Right Menu, Header Secondary Menu and Footer Menu”.

    If you want to change the sub-menu font size of Header Right Menu, then you can edit the size in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #header-right .widget ul.menu ul a {
        font-size: 14px;
    }

    Similarly, if you want to change the sub-menu font size of Header Secondary Menu and Footer Menu, then you can edit the size in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #secondary-menu ul.menu ul a, 
    #footer-menu ul.menu ul a {
        font-size: 13px;
    }
    #57680
    Vivien
    Member

    Perfect, Sakin!! Thanks a lot! That was what I was looking for, the sub menu in Secondary Menu. Looks good now!

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