[Resolved] Navigation bar without padding

Home Forums Support [Resolved] Navigation bar without padding

Home Forums Support Navigation bar without padding

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1536392
    Jurjen Brouwer

    I am working on https://5plogistics.com/ and I would like the last word of the menu : “contact” on the right site exactly under the “offerte”button en the “login WMS” button.
    Is that possible with a bit of CSS ?
    Jurjen

    #1536473
    David
    Staff
    Customer Support

    Hi there,

    your site doens’t have any left or right padding in the header or the Container.
    So when you screen is at 1100px or smaller the content touches the sides of the browser.
    I would suggest adding some padding to resolve that.

    Then if you wan to remove the right padding off the last menu item you can add this CSS:

    @media(min-width: 1100px) {
        .main-navigation .main-nav ul li:last-child a {
            padding-right: 0;
        }
    }
    #1536656
    Jurjen Brouwer

    Thanks, it works !

    #1536856
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.