- 4
I am using Nop Anywhere Sliders .I want to show rating starts after price.System Name (HomePageSlider).Could you please help me in this.I am using nopCommerce3.3.
.item-box .product-rating-boxand change the property from: display:none; to display:inline-block;;
.item-box .product-rating-box {
display: none;
}
;
.item-box .product-rating-box {
display: inline-block;
}
.product-review-box {
display: inline-block;
margin: 0 0 5px;
}
.product-review-box .rating {
width: 85px;
height: 16px;
background: url(../img/icon-rating-empty.png) repeat-x;
}
.product-review-box .rating div {
height: 16px;
background: url(../img/icon-rating-full.png) repeat-x;
}
;
.product-rating-box {
display: inline-block;
margin: 0 0 5px;
}
.product-rating-box .rating {
width: 85px;
height: 16px;
background: url(../img/icon-rating-empty.png) repeat-x;
}
.product-rating-box .rating div {
height: 16px;
background: url(../img/icon-rating-full.png) repeat-x;
}