Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1425894

    Rue Nel
    Moderator

    Hello There,

    Yes you can though with a little tweak on the number of pixels for the screen width. You can make use of this ocde:

    .x-navbar .desktop .x-nav li>a>span:after {
        display: none;
    }
    
    @media (max-width: 1370px) {
      .x-nav-wrap.desktop {
        display: none;
      }
    
      .masthead-inline .x-btn-navbar {
        display: block;
        float: right;
      }
    
      .x-nav-wrap.mobile {
        display:block;
      }
    
      .x-nav-wrap.mobile.collapse {
       display:none;
      }
    
      .x-nav-wrap.mobile.collapse.in {
       display:block !important;
      }
    }

    Please let us know if this works out for you.

    #1426201

    devideomakers
    Participant

    Great! Yes, looks like it worked 😀

    #1426223

    Jade
    Moderator

    You’re most welcome.