Hey it's Nothon here again. I'm trying to fix a problem with the ratings stars on our site http://millennialmedical.com/shop. If you folow the link, you can see that a few of the products that have been rated have stars. On the left column, the stars look good, but on the right hand column, you can see that the stars appear in kind of an awkward place. (see LOWER RIGID POST) I hope it's not too hard to fix this. I'd like to fix that without ruining the positioning of the stars when they appear in other places throughout the site. Thanks a lot.
Solved! Go to Solution.
Hello Nothon,
1. You can remove : position: absolute in product listing for rating element.
2. Or, you can add new Css style with more specific Id and Class. I think this way will not affect other places. However, you should check Responsive:
.category-products #products-list .ratings {
position: relative;
bottom: 0;
left: 0;
}
Hello Nothon,
1. You can remove : position: absolute in product listing for rating element.
2. Or, you can add new Css style with more specific Id and Class. I think this way will not affect other places. However, you should check Responsive:
.category-products #products-list .ratings {
position: relative;
bottom: 0;
left: 0;
}
Thank you very much that worked great!