This topic has 11 replies, 2 voices, and was last updated 6 years, 1 months ago ago by Rose Tyler
Hi,
Is it possible to display the star rating for each item in the list on the mobile version? As on the desktop version.
And the posting of reviews on mobile is bad, what is the problem ?
Thank you
Hello,
Please add this code in style.css file of your child theme:
@media (max-width: 480px) {
.slide-item .product .star-rating, .products-grid .product .star-rating, .products-page-cats {
display: block;
}
.single-product #reviews .comment_container {
border: none;
}
.single-product .comment_container .description {
margin-top: 10px;
}
.single-product .comment_container .adsw-gallery {
padding-left: 0px;
}
}
Regards
Hello,
Please change the previous code to:
@media (max-width: 480px) {
.slide-item .product .star-rating, .products-grid .product .star-rating, .products-page-cats {
display: block;
}
.single-product #reviews .comment_container {
border: none;
}
.single-product .comment_container .description {
margin-top: 10px;
}
.single-product .comment_container .adsw-gallery {
padding-left: 0px;
}
.single-product #reviews ol.commentlist li {
float: left;
margin-top: 15px;
}
}
Regards
Perfect thank you !
You’re welcome!
Regards
Hi !
I have one more question, is it possible to display 2 products per row on mobile version ?
Jimmy
Hello,
@media (max-width: 480px){
.sidebar-position-without .products-grid.product-count-4 .product:nth-child(n) {
width: 50%;
}
}
Regards
Thanks !
You’re welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up