Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Brecht

    (@brechtvds)

    Hi James,

    Which scaling are you talking about exactly? Making the entire grid larger?

    Brecht

    Thread Starter jamesg89

    (@jamesg89)

    Hi Brecht, I am referring to it shrinking with the browser size. My website is responsive, but these galleries do not seem to scale and thus don’t look right on mobile/smaller screen.

    Thanks!
    James

    Plugin Author Brecht

    (@brechtvds)

    Oh, right. It’s because of the floating.
    I recommend using a media query to only have it float from a certain screen width, allowing it to shrink on smaller screens.

    Kind regards,
    Brecht

    Brecht,
    I used a media query like this in the style CSS and it still had the same issue on mobile:

    @media screen and (max-device-width: 600px) {
    .column {
    float: none;
    }
    }

    Plugin Author Brecht

    (@brechtvds)

    The div you used to float the grid to the left doesn’t have the column class? Try removing that div you added and just doing it with CSS:

    .eic-container {
        float: left;
    }
    
    @media only screen and (max-width: 600px) {
        .eic-container {
            float: none;
        }
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘My Image Collages Are Not Responsive’ is closed to new replies.