Title: Mobile Menu dropdown FIX
Last modified: August 21, 2016

---

# Mobile Menu dropdown FIX

 *  Resolved [minkaart](https://wordpress.org/support/users/minkaart/)
 * (@minkaart)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/mobile-menu-dropdown-fix/)
 * In “responsive.js” …
 * Move the ‘click’ and ‘each’ functions out of the document.ready function:
 * change this:
 * jQuery(document).ready(function() {
    jQuery(“.sidebar-nav li a”).each(function(){
   if (jQuery(this).next().length > 0) { jQuery(this).addClass(“parent”); }; })
 * jQuery(“#pull”).click(function(e) {
    e.preventDefault(); jQuery(this).toggleClass(“
   active”); jQuery(“.sidebar-nav”).toggle(); }); adjustMenu(); })
 * to this:
 * jQuery(document).ready(function() {
    adjustMenu(); })
 * jQuery(“.sidebar-nav li a”).each(function() {
    if (jQuery(this).next().length
   > 0) { jQuery(this).addClass(“parent”); }; });
 * jQuery(“#pull”).click(function(e) {
    e.preventDefault(); jQuery(this).toggleClass(“
   active”); jQuery(“.sidebar-nav”).toggle(); });
 * That should do the trick!

Viewing 5 replies - 1 through 5 (of 5 total)

 *  Theme Author [Gorilla Themes](https://wordpress.org/support/users/gorilla-themes/)
 * (@gorilla-themes)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/mobile-menu-dropdown-fix/#post-4723170)
 * Thank you for sharing your solution, a new update is live on the repository.
 *  [frank ugh](https://wordpress.org/support/users/frank-ugh/)
 * (@frank-ugh)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/mobile-menu-dropdown-fix/#post-4723179)
 * Hi thanks for sharing.
    Unfortunately on my site I still do not see a drop-down
   menu when navigating whilst using a smartphone. Do you have further ideas about
   what might be causing the problem?
 * [http://www.harpistesophie.nl/](http://www.harpistesophie.nl/)
 *  Theme Author [Gorilla Themes](https://wordpress.org/support/users/gorilla-themes/)
 * (@gorilla-themes)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/mobile-menu-dropdown-fix/#post-4723180)
 * Frank how you’ve setup the menu? I’ve downloaded and activated the latest version
   from here in a localhost and it is working without issues (responsive menu).
 *  [frank ugh](https://wordpress.org/support/users/frank-ugh/)
 * (@frank-ugh)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/mobile-menu-dropdown-fix/#post-4723181)
 * Thank you for your quick response. I have simply installed the theme through 
   the wordpress admin site. (Themes – add new – activate) The menu automatically
   contained the different pages on the site.
 * In this version the code in responsive.js was already updated.
 *  [frank ugh](https://wordpress.org/support/users/frank-ugh/)
 * (@frank-ugh)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/mobile-menu-dropdown-fix/#post-4723182)
 * I re-installed the Theme. It works fine now. No idea what could have caused the
   problem before:/
 * Thanks again for helping!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Mobile Menu dropdown FIX’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/mountain-creek/1.1.4/screenshot.
   png)
 * Mountain Creek
 * [Support Threads](https://wordpress.org/support/theme/mountain-creek/)
 * [Active Topics](https://wordpress.org/support/theme/mountain-creek/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/mountain-creek/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/mountain-creek/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [frank ugh](https://wordpress.org/support/users/frank-ugh/)
 * Last activity: [11 years, 8 months ago](https://wordpress.org/support/topic/mobile-menu-dropdown-fix/#post-4723182)
 * Status: resolved