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

    Hallo,
    auf meiner Home-Seite sind unter dem Fullscreen-Slider vier Blöcke (bestehend aus Bild mit Text) horizontal angeordnet (vier Spalten mit je einem Block). Ich möchte erreichen, dass unter 950px die Spalten paarweise umbrechen, sodass zunächst je zwei Blöcke in zwei Reihen untereinander angezeigt werden. Bei unter 500px sollen dann alle Blöcke vertikal untereinander stehen. Kann mir da jemand weiterhelfen? Vielen Dank im Voraus!

    #1184395

    Hey fw100,

    Could you post a link to where we can see the elements in question please?

    Best regards,
    Rikard

    #1184474

    Vielen Dank für die Rückmeldung. Hier kommt der Link …

    #1184702

    Hi,

    Thanks for that. Please try the following in Quick CSS:

    @media only screen and (min-width: 500px) and (max-width: 989px) {
    .home #after_layer_slider_1 .flex_column.av-break-at-tablet {
        width: 50%;
        display: inline-block;
    }
    }
    @media only screen and (max-width: 499px) {
    .home #after_layer_slider_1 .flex_column.av-break-at-tablet {
        width: 100%;
        display: block;
    }
    }

    Best regards,
    Rikard

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