Title: Change responsive menu activation
Last modified: August 21, 2016

---

# Change responsive menu activation

 *  Resolved [michaeljmac](https://wordpress.org/support/users/michaeljmac/)
 * (@michaeljmac)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/change-responsive-menu-activation/)
 * Is there any way to change the width at which the mobile menu appears?

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

 *  [rabmalin](https://wordpress.org/support/users/rabmalin/)
 * (@rabmalin)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/change-responsive-menu-activation/#post-4711680)
 * Currently there is no options available in Theme Options for this feature. If
   you want to customize it then you need to make a child theme and modify accordingly.
 *     ```
       function bpchild_remove_scripts() {
           // Dequeue JS of parent theme
           wp_dequeue_script( 'blue-planet-theme-script-custom' );
           // Now add you own JS file
           wp_enqueue_script('bpchild-theme-script-custom',get_stylesheet_directory_uri().'/js/custom.js', array('jquery'),'1.0', TRUE);
       }
       add_action( 'wp_enqueue_scripts', 'bpchild_remove_scripts', 20 );
       ```
   
 * Now in the script file, copy content from parent theme and paste it in our file.
 *     ```
       jQuery(document).ready(function($){
           jQuery('nav#site-navigation').meanmenu({
             meanScreenWidth: "640"
           });
       });
       ```
   
 * To change the trigger point of mobile menu, change number in place of “640”. 
   Default value is 640. Number represents the screen size in pixel.
 *  [rabmalin](https://wordpress.org/support/users/rabmalin/)
 * (@rabmalin)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/change-responsive-menu-activation/#post-4711795)
 * Hope you got what you needed.

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

The topic ‘Change responsive menu activation’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/blue-planet/3.9.4/screenshot.png)
 * Blue Planet
 * [Support Threads](https://wordpress.org/support/theme/blue-planet/)
 * [Active Topics](https://wordpress.org/support/theme/blue-planet/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/blue-planet/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/blue-planet/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [rabmalin](https://wordpress.org/support/users/rabmalin/)
 * Last activity: [12 years, 4 months ago](https://wordpress.org/support/topic/change-responsive-menu-activation/#post-4711795)
 * Status: resolved