[Resolved] Left space on archive pages (2 columns layout) in mobile screen

Home Forums Support [Resolved] Left space on archive pages (2 columns layout) in mobile screen

Home Forums Support Left space on archive pages (2 columns layout) in mobile screen

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #985369
    Hilton

    Hi,

    We’ve noticed a left space on archive pages as you can see here https://prnt.sc/otboq5

    We added this custom CSS to try to fix that. Can you validate please?


    @media
    only screen and (max-width: 768px) {
    .generate-columns-container:not(.masonry-container) .generate-columns {
    padding-left:0;
    }
    }

    #985545
    David
    Staff
    Customer Support

    Hi there,

    looks like the CSS for mobile is being re-ordered by your cache. Try flushing it to see if it resolves the issue. If it is still a problem then try this CSS to force the change:

    @media (max-width: 767px) {
        .generate-columns-container>* {
            padding-left: 0 !important;
        }
    }
    #985857
    Hilton

    Hi David,

    Thanks 😉

    #985860
    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.