Title: Change Breakpoints
Last modified: August 2, 2024

---

# Change Breakpoints

 *  [Manja Neumann](https://wordpress.org/support/users/tippl/)
 * (@tippl)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/change-breakpoints-2/)
 * Hi,
   is there any possibility to adjust the breakpoints for the Generateblocks
   container? I want the change from mobile to tablet and from tablet to desktop
   a bit later.
 * Thanks, 
   Manja

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

 *  Plugin Support [Alvind](https://wordpress.org/support/users/alvindcaesar/)
 * (@alvindcaesar)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/change-breakpoints-2/#post-17928944)
 * Hi there,
 * Are you referring to a responsive editing control?
 * [https://docs.generateblocks.com/article/responsive-controls/](https://docs.generateblocks.com/article/responsive-controls/)
 *  Thread Starter [Manja Neumann](https://wordpress.org/support/users/tippl/)
 * (@tippl)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/change-breakpoints-2/#post-17929305)
 * No, I want to adjust the breakpoints provided by Generateblocks. For example,
   the default Generateblocks breakpoint for tablets is 768-1024px, but I need 768-
   1279px.
 *  Plugin Support [David](https://wordpress.org/support/users/diggeddy/)
 * (@diggeddy)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/change-breakpoints-2/#post-17929334)
 * Hi there,
 * you can use the following PHP Snippet:
 *     ```wp-block-code
       add_action( 'wp', function() {    add_filter( 'generateblocks_media_query', function( $query ) {        $query['desktop'] = '(min-width: 1280px)';        $query['tablet'] = '(max-width: 1279px)';        $query['tablet_only'] = '(max-width: 1279px) and (min-width: 768px)';        $query['mobile'] = '(max-width: 767px)';        return $query;    } );}, 20 );
       ```
   
 *  Thread Starter [Manja Neumann](https://wordpress.org/support/users/tippl/)
 * (@tippl)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/change-breakpoints-2/#post-17929558)
 * It works. 
   Thank you!
 *  Plugin Support [David](https://wordpress.org/support/users/diggeddy/)
 * (@diggeddy)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/change-breakpoints-2/#post-17931332)
 * You’re welcome

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

The topic ‘Change Breakpoints’ is closed to new replies.

 * ![](https://ps.w.org/generateblocks/assets/icon.svg?rev=3239461)
 * [GenerateBlocks](https://wordpress.org/plugins/generateblocks/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/generateblocks/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/generateblocks/)
 * [Active Topics](https://wordpress.org/support/plugin/generateblocks/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/generateblocks/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/generateblocks/reviews/)

 * 5 replies
 * 3 participants
 * Last reply from: [David](https://wordpress.org/support/users/diggeddy/)
 * Last activity: [1 year, 9 months ago](https://wordpress.org/support/topic/change-breakpoints-2/#post-17931332)
 * Status: not resolved