Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1140321

    Hi,

    How would I go about have the masonry element of my website on mobile be 2 columns instead of 1?

    #1140332

    Hey arallon,

    Add this to quick css:

    @media only screen and (max-width: 768px) {
    
    .av-masonry-entry { width: 50%; }}

    Best regards,
    Jordan Shannon

    #1141099

    Jordan,

    With the provided code I’m still seeing 1 column of images on my mobile.

    #1141444

    Hi,

    Did you add the code to the very top of quick css so it runs first? Also, clear the cache a few times over.

    Best regards,
    Jordan Shannon

    #1141528

    Yes, I did. It seems to not work.

    #1142205

    Hi,

    Thank you for the update.

    Try to adjust the max-width value in the css media query from 768px to 480px.

    @media only screen and (max-width: 480px) {
    .responsive #top .av-masonry-entry {
        width: 49.9% !important;
    }
    }

    Please don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

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