change Storefront child theme css breakpoint
-
Hi
I developped a child theme from Storefront.
But I need the mobile layout (mobile burger menu, etc) to display on 768px-wide screens.
I tried this
// Change Woocommerce css breaktpoint from max width: 768px to 767px add_filter('woocommerce_style_smallscreen_breakpoint','woo_custom_breakpoint'); function woo_custom_breakpoint($px) { $px = '769px'; return $px; }
but it doesn’t work.
I tried to change
$desktop: 768px;
to$desktop: 769px;
in _variables.scss in storefront files, but it doesn’t work.Can you help me achieve that?
Thanks
Viewing 12 replies - 1 through 12 (of 12 total)
Viewing 12 replies - 1 through 12 (of 12 total)
- The topic ‘change Storefront child theme css breakpoint’ is closed to new replies.