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:
Would be great if someone could help me!
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
Thanks!
Now there is only one row like i wanted. But is it possible to show just one slide for mobile?
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?
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