Site logo

Archived topic

Blogs Column View showing wrong on mobile view

3 replies · Started by hemunt on March 27, 2020

Viewing posts 1–4 of 4

I used (Display posts in columns) It shows very well. But when I open my site in Mobile the Blog Post container look they moved right side of the screen kind of look like it stuck towards the right side of the screen. Please help me.

Hi there,

i think your cache is messing with the order of some of the CSS - you can test that by disabling the cache and clearing your browser cache.

If the issue persists with that cache plugin then try this CSS to force the right hand padding back in place:

@media (max-width: 768px) {
    .generate-columns {
        padding-right: 20px !important;
    }
}

or if you want no space around the posts use this instead:

@media (max-width: 768px) {
    .generate-columns {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

Thank you sir

You're welcome

This archived topic is closed to new replies.