cancel
Showing results for 
Search instead for 
Did you mean: 

ratings stars appearing in price box

SOLVED

ratings stars appearing in price box

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.

1 ACCEPTED SOLUTION

Accepted Solutions

Re: ratings stars appearing in price box

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;

}

Problem solved? Click Accept as Solution!

View solution in original post

2 REPLIES 2

Re: ratings stars appearing in price box

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;

}

Problem solved? Click Accept as Solution!

Re: ratings stars appearing in price box

Thank you very much that worked great!