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

    Hi! I made a section with an ID “produits” where there is 2 row of 3 columns. I want them to turn into 3 row of 2 columns instead of 1 on smaller screen. I used this code:

    @media only screen and (max-width: 767px) {
    #produits div.flex_column.av_one_third {
    width: 50% !important;
    }}

    But with this code I get 6 row of 1 column that take half the space.

    Can you help me?

    #773684

    Hey metamorfic,

    Please try this instead:

    @media only screen and (max-width: 767px) {
    #produits div.flex_column.av_one_third {
        width: 44% !important;
        display: inline-block;
        float: left;
        margin-left: 6% !important;
    }
    }

    Best regards,
    Rikard

    #773969

    Hi Richard!

    This works but still have a problem, I get 2 photos on the first row, 1 on the left of the second row, then 2 on the 3rd row, and 1 on the left of the 4th row. Then what I need is 3 row of 2 photos…

    Thanks!

    #774293

    Hi,

    Ive checked your site and theres three rows and two photos inside of each row.

    Best regards,
    John Torvik

    #784114

    I figured out an other way around! Thanks!

    #784304

    Hi,

    We glad that your problem was solved :)

    Let us if you need some help!

    Best regards,
    John Torvik

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