mgsisk / webcomic

Comic publishing power for the web. Turn your WordPress-powered site into a comic publishing platform with Webcomic.
http://wordpress.org/plugins/webcomic
GNU General Public License v2.0
110 stars 29 forks source link

Main menu on site won't show on mobile #194

Closed ghost closed 10 years ago

ghost commented 10 years ago

I'm developing a site for a friend found here: http://prideoflife.com/

I've checked the site on mobile Safari, my friend has checked on Android mobile devices and the main menu doesn't appear there either.

Everything works fine on mobile iOS using the Atomic Lite browser, and of course, on a regular computer. Not sure what to make of this and any help is appreciated.

mgsisk commented 10 years ago

Interesting; there's a <select> element that's supposed to popup at the point when the normal menu disappears (site width ≤ 640px), but it's obviously not doing that. It looks like there's a display: none; rule for #header nav select that occurs after the @media rule that would normally display it; is this in your custom.css file?

ghost commented 10 years ago

Heh, my mistake. I removed the display:none rule, but now on the regular site a dropdown menu appears along with the menu I created. Not sure what to do there.

mgsisk commented 10 years ago

Well, there should be one #header nav select { display: none; } rule, in style.css (line 181).

ghost commented 10 years ago

Ah, gotcha! Thanks for the clarification. Everything's working as it should now.