Generateblocks breakpoints
-
Hello,
How can I change the generateblocks breakpoints for these ones:?
@media (max-width: 768px)
@media (min-width: 769px) and (max-width: 1024px)
@media (min-width: 1025px)
I tried this code with Code Snippets Plugin and it doesn′t work.
add_action( 'wp', function() { add_filter( 'generateblocks_media_query', function( $query ) { $query['desktop'] = '(min-width: 1025px)'; $query['tablet'] = '(max-width: 1024px)'; $query['tablet_only'] = '(max-width: 1024px) and (min-width: 769px)'; $query['mobile'] = '(max-width: 768px)'; return $query; } ); }, 20 );
Thank you!
The page I need help with: [log in to see the link]
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Generateblocks breakpoints’ is closed to new replies.