产品标题下的星级评分错误
Bug in star rating under product title
我在我的网站上看到了这个星级评分问题:
https://goldenshop.be/product/golds-gym-strength-stringer-goud/
如您所见,第一颗星的背景似乎有一个重复的半星。我怎样才能消除这个错误?
在此先感谢您的支持!
在 css 代码中更改此内容:
.woocommerce .star-rating span {
text-indent: 999px;
left: 0px; <----- 2px to 0px
}
.woocommerce .star-rating span::before
{
text-indent: 0px; <----- -2px to 0px;
}
我在我的网站上看到了这个星级评分问题: https://goldenshop.be/product/golds-gym-strength-stringer-goud/
如您所见,第一颗星的背景似乎有一个重复的半星。我怎样才能消除这个错误?
在此先感谢您的支持!
在 css 代码中更改此内容:
.woocommerce .star-rating span {
text-indent: 999px;
left: 0px; <----- 2px to 0px
}
.woocommerce .star-rating span::before
{
text-indent: 0px; <----- -2px to 0px;
}