wordpress 更改Woocommerce评论星的颜色和间距

hk8txs48  于 2023-03-17  发布在  WordPress
关注(0)|答案(2)|浏览(157)

有人知道我可以用什么样的CSS代码来改变我的评论星的颜色,并将它们进一步分开吗?
我有下面的代码,但它只改变了轮廓颜色

.product .star-rating span:before,
.product .star-rating:before {
    color: #FF0000;
}

我应该添加什么代码来完成整个过程,并将它们分隔得更远一点?
谢谢!

rqmkfv5c

rqmkfv5c1#

以下内容应将颜色更改为#FF0000,并在评定星级之间添加1px的间距:

.star-rating span:before,
.star-rating::before,
p.stars a:hover:after, 
p.stars a:after {
    color: #ff0000 !important;
    letter-spacing: 1px; 
}

测试和工作

nhjlsmyf

nhjlsmyf2#

您可以使用以下css规则来更改评级星级的颜色。

p.stars.selected a.active:before, p.stars:hover a:before, p.stars.selected a:not(.active):before, p.stars.selected a.active:before{color:#ff0000!important;}

#ff000在上面的规则中使用将使显示红色。改变它到他想要的颜色值。
使用下面的css来分隔星星。

p.stars a{margin-right:5px!important;}

将5px更改为您想要使用的任何值。
希望这个有用。

相关问题