Site logo

Archived topic

Adding Space Beneath Navigation

3 replies · Started by Charles on July 29, 2021

Viewing posts 1–4 of 4

Hi,

Is there a setting or CSS which I can use to add some margin / space below the navigation?

adding space between navigation and body content

Many thanks

Charles

Hi there,

you can use some CSS to give the site-navigation some bottom padding:

#site-navigation {
    padding-bottom: 20px;
}

If you just want it for Desktop then change it to this:

@media(min-width: 769px) {
    #site-navigation {
        padding-bottom: 20px;
    }
}

David many thanks that excellent answer, and for going the extra mile with the media query code. Much appreciated.

Glad to be of help - I didn't think you would need it on mobile :)

This archived topic is closed to new replies.