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.

SmartMenus for WordPress

Home Forums Older releases 0.9.x SmartMenus for WordPress

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1306
    emsgeorge
    Participant

    I love SmartMenus, but I’m having difficulty modifying to WordPress. I’ve modified a simple Mobile First Genesis child theme and noticed that the Menu doesn’t open in Android 4.0.4, although it works in iPhones. Also doesn’t work on Android 4.1.1. But it does work on Android 4.3 (Samsung S4).

    Any fix?

    Thanks!

    #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>');
    #1534
    emsgeorge
    Participant

    Wow… incredibly simple fix! Thank you!

    #1536
    admin
    Keymaster

    Np! Cheers!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘0.9.x’ is closed to new topics and replies.