Archived topic
Blog section is not mobile friendly
5 replies · Started by hibiscus80 on October 6, 2019
Hi,
I have a problem on my website. When I go on a category page with my smartphone, all the posts seems to have a padding left. Google alerted me that my website has an issue on mobile....
Hi there,
can you clear and disable your cache plugin to see if this resolves the issue. If it doesn't leave it disabled so we can take another look
Thanks for the reply. It seems it comes indeed from my cache plugin. Clear the cache doesn't change anything but when I disable the cache for mobiles, everything is fine....
The cache is messing with the order of the mobile CSS so the padding removal is being overridden on mobile add this CSS to overcome that:
@media (max-width: 767px) {
.generate-columns-container>* {
padding-left: 0 !important;
}
}
Thanks! The code works fine, problem solved :-)
You're welcome