Mobile menu showing up on the navbar

You have assisted me with getting the mobile menu to display at a wider width for use on a Microsoft Surface. I had to make some changes to the logo on this site and now the hamburger menu for the mobile version is displaying at the same time as the navbar at 1200 px. Can you please tell me what is triggering this?

Thank you so much for your assistance.

https://fogel-anderson.com

Hi @kstidham,

Thanks for reaching out!

Would you mind sharing your admin credentials so that we can check your backend settings? To do that, please give us the following information in a Secure Note.

  • WordPress Login URL
  • Admin level username and password

You can find the Secure Note button at the bottom of your posts.

Thank you.

Hello @kstidham,

You have added this custom CSS:

@media (max-width: 1205px) {
.x-nav-wrap.desktop {
    display:none;
  }}
  
body .x-nav-wrap.mobile.x-collapsed {
    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;
}

You should update it and use this code instead:

@media (max-width: 1205px) {
	.x-nav-wrap.desktop {
   	display:none;
  	}

	body .x-nav-wrap.mobile.x-collapsed {
	    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 note that custom coding is outside the scope of our support. Issues that might arise from the use of custom code and further enhancements should be directed to a third-party developer.

Kindly let us know how it goes.

The new code worked great. Thank you.

Hello @kstidham,

Glad that we were able to help you. Please feel free to open a new thread if have any more conecern.

Thanks

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