Hi,
I’m trying to change the breakpoint at which my right sidebar drops below the content area. Right now it is set at 768px (by default), which is a way too small value for my needs. From what I understand, I need to alter these values using the generate_media_queries filter (for some reason it is missing from the documentation –> filters page).
I found a helpful snippet in this topic and I used the following code:
add_filter( 'generate_media_queries', function( $queries ) {
$queries['mobile'] = '(max-width: 900px)';
return $queries;
} );
However, it doesn’t seem to work. Any help would be much appreciated.
Thank you