Woocommerce 店面如何在移动设备上不隐藏搜索栏
Woo-commerce storefront how to NOT hide search-bar on mobile
我想让我的店面主题在移动设备上不隐藏站点搜索 .woocommerce-product-search
中的构建。
添加以下内容css
方法一:https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/
@media screen and (max-width:768px) {
.site-search {
display: block !important;
}
}
我想让我的店面主题在移动设备上不隐藏站点搜索 .woocommerce-product-search
中的构建。
添加以下内容css
方法一:https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/
@media screen and (max-width:768px) {
.site-search {
display: block !important;
}
}