Okay
  Public Ticket #947756
Font Size
Closed

Comments

  • Stu Goldz started the conversation

    Hello

    I'm working in a staging area. See http://www.staging4.vapepenreviewhq.com/

    I activated the Typography becuase I do like the PT Sans.  However, I will need to modify the Size of the Menus text and H1, H2, H3.  What would be the best way to do that?  It seems there is no easy way.   The menus and H1, H2 and H3 titles are far too large to fit nicely. Please advise. 

  •  93
    djwd replied

    Hi there,

    Font sizes can be changed globally in the Typography tab, adding an option for every possible detail would make the options panel too cluttered.
    For that, you can still use Custom CSS textarea though (Advanced Tab).

    Something like:

    /*For menu items*/
    .main-navigation li a {font-size: 14px;}
    /*Headings*/
    h1 {font-size: 24px}
    h2 {font-size: 20px}
    /*..and so on */

    (text wrapped in /* .. */ are just comments no need for those)

    Hope it helps

    Regards
    djwd

  • Stu Goldz replied

    This is great. One more question.  What is the Custom CSS

    .main-navigation li a {font-size: 14px;}

    for the submenu items?

  •  93
    djwd replied

    Glad it helped, to target sub-items only it would be:

    .main-navigation .sub-menu li a {font-size: 12px}

    Regards
    djwd