• Hello,

    My website is not online yet, but I hope you can help me out.
    I am using the Moesia theme for the first time and I really like it, but I am unable to figure out something in css:
    I do not want to show a site title or tagline, I want to have my main menu span the entire width of the page, and be centered. Can you please help me with the css for this, I am seriously struggling and nothing seems to work.

    Thanks.

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

Viewing 1 replies (of 1 total)
  • Hello there,

    You would probably be able to achieve that by adding this CSS code to Appearance > Customize > Additional CSS from dashboard.

    
    @media only screen and (min-width: 992px) {
    
      .site-branding {
        display: none;
      }
    
      .top-bar #site-navigation.col-md-8 {
        width: 100%;
      }
    
      .main-navigation ul.menu {
        display: table;
        float: none;
        margin-left: auto;
        margin-right: auto;
      }
       
    }
    

    Regards,
    Kharis
    aThemes Support

Viewing 1 replies (of 1 total)
  • The topic ‘Span Navbar menu over full width of page’ is closed to new replies.