Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #375852

    Hi!

    I have a contentslider that has 2 rows of text. on mobile devices I would like to have just one text row. How can I do that?

    here is my testsite, the content slider is under the first textsection:

    http://www.kilmo.de/k

    Would be great if someone could help me!

    #376125

    Hi kimoribj!

    Please add following code to Quick CSS

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .slide-entry {
    width: 100%;
    margin-left: 0;
    }}

    Cheers!
    Yigit

    #376132

    Thanks!

    Now there is only one row like i wanted. But is it possible to show just one slide for mobile?

    #376135

    And there is one more thing:
    some contentsliders i dont want to show on mobil devices…
    I have custom css activated. Would I have to make the contentslider invisible/hide in the @media?

    #376611

    Hi!

    Yes, you can hide the content sliders using media queries. Try to add a custom css class called “hide-mobile” on these sliders then use something like this on Quick CSS:

    @media only screen and (max-width: 767px) {
    .hide-mobile {
    display: none;
    }
    }

    You can also create a static image to replace the content slider on mobile.

    Cheers!
    Ismael

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