This topic has 6 replies, 2 voices, and was last updated 6 years, 2 months ago ago by Rose Tyler
Hello,
We are experiencing and odd occurrence when we view our page on mobile platforms. When our products are listed there are often blank spaces. Please see the attached screen shot.
We have responsive selected, no custom CSS for product archives. I am hoping for some guidance to avoid or mitigate this.
Thank you!
Hello,
Please try to add this code in Theme Options > Custom css or in style.css file of your child theme:
@media only screen and (max-width: 1200px) and (min-width: 778px){
.products-grid.row-count-5 .product:nth-child(3n+1) {
clear: both !important;
}
}
Regards
The problem only seems to remain when viewed on a tablet with portrait orientation. Could this be due to the Default value being taken from the width attribute? (screen shot of WPB Column settings: https://screenshots.firefox.com/x3J3YK37iKUeJRjW/ajgamecave.com)
It looks great on all of our other tested platforms.
Hello,
Please change the previous code to:
@media only screen and (max-width: 1200px) and (min-width: 768px){
.products-grid.row-count-5 .product:nth-child(3n+1) {
clear: both !important;
}
}
Regards
Brilliant!
Thank you, it looks lovely on all platforms.
Best Regards,
Joe
You’re welcome!
Regards
The issue related to '‘Prodcut Lists on Mobile Platforms’' has been successfully resolved, and the topic is now closed for further responses