gpt4 book ai didi

wordpress - 更改 Woocommerce 媒体查询断点以在最大宽度 : 767px instead of 768px 处加载 woocommerce-smallscreen.css

转载 作者:行者123 更新时间:2023-12-03 08:18:05 24 4
gpt4 key购买 nike

Woocommerce 以最大宽度 768 像素加载 woocommerce-smallscreen.css。如何将其更改为 767px?我使用这个 css 文件,所以我希望它被加载,但也以某种方式改变这个媒体查询断点。

我在 woocommerce css 文件中搜索了这个媒体查询,但没有找到我在 chrome devtools 中看到的这个短语:media="only screen and (max-width: 768px)"

最佳答案

在functions.php中添加这个Woocommerce过滤器。

// 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 = '767px';
return $px;
}

关于wordpress - 更改 Woocommerce 媒体查询断点以在最大宽度 : 767px instead of 768px 处加载 woocommerce-smallscreen.css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39612275/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com