Move Nav bar logo left follow up

Hi again,

A couple week ago I had a couple nav bar issues I wanted resolvedand did. See there here:

Thanks in Advance!
I just realized that the nav bar looks wonky on mobile and I’m not sure how to fix it. Please help!
The menu display below the mobile nav button. How can I remove it?

Hello @quituck,

Thanks for writing in!

Please try using following CSS under X > Theme Options > CSS:

@media only screen and (max-width: 600px) {
  .x-navbar-wrap {
    display: none;
}
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

Hi,
Thank for your help. Unfortunatly, that did not work. It completely hide my mobile nav bar button.
I use this code to center my nav bar text: .x-nav-wrap.desktop { display: inline-block; }But It also causes me to have a double menu in mobile view.

Please advise.

Thanks again!

Hi @quituck,

Please try this CSS instead:

@media (min-width: 980px){
  .x-nav-wrap.desktop { 
      display: inline-block; 
   } 
}

Without media query, it overrides the CSS that hides it on mobile.

Hope this helps.

That worked perfectly.

Thanks again for all of your help. I really appreciate your support.

You are most welcome. :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.