• Hi, since I first installed theme my navigation has always been in two rows instead of one line with a second if needed.

    I also can’t center it and have had a lot of issues with placement.

    In additional CSS I have been able to at least get it aligned to the left. I think the problem is trying to delete the space reserved for a logo which I do not need.

    I would ideally prefer to have the top menu CENTERED on each page, any help would be appreciated.

    I like the theme in general, it’s great but I have had many issues making small changes that normally would be quite easy for me. I have just a few other questions which I will post accordingly later.

    This is driving me NUTS because I can’t figure out what I am missing here!

    Top navigation centered in one row please!

    THANKS

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

Viewing 1 replies (of 1 total)
  • I hope you are well today and thank you for your question.

    You can make it centre aligned by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Additional CSS

    
    @media only screen and (min-width: 992px){
    #header .top-header .col-sm-8.col-xs-4 {
        width: 100%;
    }
    
    body #header .top-header .header-navigation {
        float: none;
        margin: 0 auto;
        display: table;
    }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Top Navigation Placement’ is closed to new replies.