• Hello!

    I would like to know, how I can reduce the size of the letters of the header menu, but NOT exactly the ‘header menu’, but ‘only’ the “sub-items” or “sub-menues”.

    Thank you in advance!

    Cesar

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Here is the CSS code to decrease the font size of the submenu:

    #mainnav .sub-menu li a {
        font-size: 13px;
    }

    You can put the code into: Customize > additional CSS.

    Thread Starter cekar

    (@cekar)

    Hi @awanrmb !

    Thank you!!! It worked very well!

    Sorry to bother you, but do you know if it’s possible to do the same but ‘only’ to ‘sub-sub menues’ or also to ‘sub-sub-sub menues’?

    Finally, and in the same way of the sub menues, sub-sub menues and sub-sub-sub menues, is possible to change the ‘width’ of the boxes?

    Thanks a lot!

    Hi,

    If you want it to working for sub-sub menues or sub-sub-sub menues, you can use this code:

    #mainnav .sub-menu .sub-menu li a {
        font-size: 13px;
    }

    And here to adjust the width of the box:

    #mainnav .sub-menu li a {
      width: 250px;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Menu Sub Menu Size’ is closed to new replies.