Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Re: SmartMenus for WordPress

Home Forums Older releases 0.9.x SmartMenus for WordPress Re: SmartMenus for WordPress

#1533
admin
Keymaster

Hmm, seems to be a weird bug in older Webkit’s. If the menu button link has display: inline set and no real text content (apart from that added via :before), it isn’t clickable. So you have 2 options:

I) Either set the following in the CSS:
http://e-ms.co/dev/mobilechildtheme/wp-content/themes/mobilefirst/style.css

#menu-button {
  display:inline-block;
  ...
}

II) Or add some real text inside the link here (and maybe add just the icon via :before):

jQuery("nav .genesis-nav-menu").before('<div id="menu-button-container"><a id="menu-button" class="null">MENU</a></div>');