Navigation missing on mobile devices

Hi, I made a web site for a client and the menu navigation doesn’t show on mobile devices. How can I fix this? any help will be greatly appreciated. The web site is www.tamaquaborough.com

In the file layout.css there is an media rule that hides the navigation for screens with a width between 180 and 900 pixels.

@media screen and (min-width:180px) and (max-width:900px) {
	...
	#mainav ul{display:none;}
	...
}

Looks like you are using a jQuery plugin to create a mobile menu but have not loaded jQuery. This is not a MODX issue by the way.

1 Like