[Resolved] Blogs Column View showing wrong on mobile view

Home Forums Support [Resolved] Blogs Column View showing wrong on mobile view

Home Forums Support Blogs Column View showing wrong on mobile view

  • This topic has 3 replies, 2 voices, and was last updated 4 years ago by David.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1211665
    hemunt

    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.

    #1211762
    David
    Staff
    Customer Support

    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;
        }
    }
    #1211834
    hemunt

    Thank you sir

    #1211854
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.