Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #61008
    Kim
    Participant

    How can I make my Main Navigation larger and more spaced apart?

    Kim
    HideMyAge.com

    #61027
    Sakin
    Keymaster

    @Kim: In the following css, you can increase the padding as per your need and then add it in Custom CSS box:

    @media screen and (min-width: 940px) {
        #header-menu ul.menu a, #footer-menu ul.menu a {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
    #61059
    Kim
    Participant

    Much Thanks!!!
    K

    #61066
    Kim
    Participant

    How do I make the actual text bigger?

    #61124
    Sakin
    Keymaster

    @Kim: which actual text are you taking about, if it’s general default text size then you can adjust it by adding in the following css in Custom CSS box:

    body, input, textarea {
        font-size: 15px;
        line-height: 1.62em;
    }
    #61176
    Kim
    Participant

    Hmmmm. I added that and made it even bigger – 20px, but I’m still not seeing any change in the font size on the top nav.

    https://hidemyage.staging.wpengine.com/

    #61179
    Sakin
    Keymaster

    @Kim: Oh for menu font size, then you need to change and add the following css instead.

    #header-menu ul.menu a, 
    #footer-menu ul.menu a {
        font-size: 14px;
        line-height: 3.5em;
    }
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Main Nav Font Size’ is closed to new replies.