Hello,
I face a problem with products in category grid.
http://thedresscode.gr/endusi
The products per row are 3 but some times it show 2 and need cache refresh to show 3 products again
https://gyazo.com/8849e74dbadfc1f24262a54f4ef1c8b4
Thanks in advance
6 answers
Hi Alex Asimakopoulos,
Our maeket theme working fine at: http://techzone.demo.ubertheme.com/
I need a closer look to detect the root of issues as you said in your site. Let’s provide me the admin and ftp credentials of your site.
Regards,
Mall.
The products per row are 3 but some times it show 2 and need cache refresh to show 3 products again
I have tested your site with some G-Chrome browser in my local but i don’t see the issues as you said.
The grid view products always show three items per row. Le’st have a look a gain and contact me if you need further assistance!
Regards,
Mall.
Hello,
Take a look at this category
http://thedresscode.gr/aksesouar/tsantes
Thanks
Hi Alex Asimakopoulos,
Yes, that issue come from you have product title with long text.
To solve that issue, you can open the CSS file at path: skin/frontend/ubertheme/market/css/styles.css
and find to the block code:
.products-grid li.item .inner .stats-container .product-title {
color: #212121;
display: block;
font-family: "Roboto Condensed",sans-serif;
font-size: 16px;
font-weight: 500;
margin: 0 0 10px;
padding: 20px 0 0;
}
and replace it by block code:
.products-grid li.item .inner .stats-container .product-title {
color: #212121;
display: block;
font-family: "Roboto Condensed",sans-serif;
font-size: 16px;
font-weight: 500;
margin: 0 0 10px;
padding: 20px 0 0;
line-height: 30px;
}
and let’s me know how it goes.
Regards,
Mall.