Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #867774

    DoebankDesigns
    Participant

    For some reason my mobile menu won’t display in the center. I’ve tried all sorts of CSS from the forum, but nothing works.

    #867776

    DoebankDesigns
    Participant
    This reply has been marked as private.
    #868651

    Rupok
    Member

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer.

    @media only screen and (max-width: 600px) {
    
    .x-brand {
      margin-bottom: 15px;
    }
    
    .masthead-inline .x-btn-navbar {
      clear: both;
      display: block;
      float: none;
      margin: 15px auto;
      width: 50px;
    }
    
    }

    You can change the max-width: 600; value to higher to get this work on higher screen size too if needed.

    Hope this helps.

    Cheers!