Text Blocks are hard to read on mobile format is there a way to either drop them to the bottom of the slider or remove them from the mobile size. The slider works great but when it goes to mobile/ smart phone size it get real unfriendly.
Fri, 02/20/2015 - 09:40
Hi,
You can see the reference here:
https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries
First, add the following code into file css
@media (max-width: 600px) {
.mobile-display-none {
display: none;
}
}
(600px: the screen's size, mobile-display-none: class name)
Then when you add the text on Slider, it must be under the form
<p class="mobile-display-none">text here</p>