Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #851207

    logoglo
    Participant

    Hi there, im wondering if this is possible.

    I have rather a large menu, and on the ipad when vertical, its switches to the mobile menu, but landscape, the menu appear under the logo, and the logo to the left, is there any way I can make the logo centered when viewed like this?

    Thanks.

    #851352

    Prasant Rai
    Moderator

    Hello There,

    Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

    Thanks.

    #851583

    logoglo
    Participant
    #851721

    John Ezra
    Member

    Hi there,

    Thanks for writing in! This will take some customization work, which may not be worth it. This is because the menu drops down to a second line because it doesn’t fit. Then after a few more pixels less in with it will already switch to a mobile nav. We suggest just having the mobile nav switch in a little earlier.

    You can do this using CSS. You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    @media (max-width:995px){
        nav.x-nav-wrap.desktop {
            display:none;
        }
    
        a.x-btn-navbar {
            display:inline-block;
            float:right;
        }
    
        .x-nav-wrap.mobile {
            display: block;
        }
    }

    Hope this helps – thanks!

    #855533

    logoglo
    Participant

    Thanks!

    #855982

    Christian
    Moderator

    You’re welcome. 🙂