需要增加商品类别TITLE的字体大小(我正在使用Woocommerce和Wordpress Astra主题)

问题描述 投票:0回答:1

[嗨,我在woocommerce中使用astra入门主题对于我的类别和子类别标题,我都需要增加字体大小,更改背景颜色为实际和悬停都透明请任何人能帮助我。非常感谢

我需要帮助的页面:https://www.annure.com/product-category/iphone-skins/例如[IPHONE 11这个词]。

我尝试在Customiser的Custom CSS和Advanced CSS上使用该代码,但是没有用。

以下提到代码:

.product-category h3 {
    font-size: 18px;
    line-height: normal;
    margin-top: 15px;
}

一旦尝试使用h3,然后再尝试使用h2。

我也尝试过此代码

#top.archive .products .product h3 {
padding-top: 5px;
font-size: 15px;
line-height: 18px;
font-weight: normal;
margin: 0;
font-family: "Georgia", "Times New Roman", Helvetica, Arial, sans-serif;
text-transform: uppercase;
}

没有任何作用。

php wordpress woocommerce opacity font-size
1个回答
0
投票

没有h3元素,通常css选择器不存在

如果要更改左侧的Iphone 11,这是使用的正确选择器:

.product-categories li a {
    font-size: 18px;
    line-height: normal;
    margin-top: 15px;
}
© www.soinside.com 2019 - 2024. All rights reserved.