使用CSS为单个产品的页面禁用WooCommerce的Storefront主题的整个标题?

时间:2017-09-06 15:13:06

标签: wordpress woocommerce storefront

我试过像.page-id-1122 #different-elements-i-saw-in-chrome-inspector-here { display: none; }那样没有运气。

谁能告诉我怎么做到这一点?提前谢谢。

2 个答案:

答案 0 :(得分:1)

只需获取您的标题ID并转到您的样式css,添加此代码

body.product-template-default.single.single-product.woocommerce.woocommerce-page.customize-support .header-area {     display:none; }

这里.header-area将是你的标题类/ id。

答案 1 :(得分:0)

试试这个:

.page-id-1122 #different-elements-i-saw-in-chrome-inspector-here { display: none !important; visibility: hidden !important; }