我最近更改了我的代码,以便类别页面上的星级评分浮动到左侧,但在单品评论中,评分随机浮动。
我用来重新定位this页面上的星标的CSS是:
.star-rating {
position: absolute !important;
margin-left: 25px !important;
bottom: 0px;
float: left;
}
ul.products .star-rating
{
margin: 1.5em auto;
}
如果向下滚动到this页面的底部,您会看到有两个随机星级评级浮动,一个位于双线上方且位于评论下方。并且其他星级评级高于页脚。希望你能提供帮助,谢谢!!
答案 0 :(得分:0)
您给出星级绝对位置,但最近的位置相对容器是#comment容器。如果你给出相对于.comment-text的位置,我想这就是你想要它的位置?
答案 1 :(得分:0)
更改了我的css代码,见下文:
li .star-rating {
position: absolute !important;
margin-left: 1.5em !important;
bottom: 0px;
float:left;
}
ul.products .star-rating
{
margin: 1.5em auto;
}
.single-product #reviews .star-rating {
position: relative !important;
}