【发布时间】:2021-10-20 23:00:48
【问题描述】:
我在 woocommerce 产品页面中创建了两个额外的选项卡,但是如果您移动到较小的屏幕,文本现在会中断,如果要避免这种情况,我还需要更改文本颜色。
http://allabouthome.co.uk/product/butler-style-writing-desk-with-foldable-legs/
【问题讨论】:
标签: woocommerce colors fonts tabs
我在 woocommerce 产品页面中创建了两个额外的选项卡,但是如果您移动到较小的屏幕,文本现在会中断,如果要避免这种情况,我还需要更改文本颜色。
http://allabouthome.co.uk/product/butler-style-writing-desk-with-foldable-legs/
【问题讨论】:
标签: woocommerce colors fonts tabs
经过一番研究,我设法使用此代码来设置选项卡的样式,我还删除了不需要的评论选项卡,现在似乎可以正常显示文本了!
/* active tabs */
.woocommerce-tabs ul li.active a {
Background-color: #99f7ab;
}
/* inactive tabs */
.woocommerce-tabs ul li a {
Background-color: #70be51;
}
/* active tabs text */
.woocommerce-tabs ul li.active a {
Color: #60695c !important;
}
/* active tabs text */
.woocommerce-tabs ul li a {
Color: white !important;
}
【讨论】: