On the homepage of my website http://www.fronikboerderij.nl/nieuw2018/ I have added a full width easy slider. The first slide is a video and has a caption title and text. I have added a fallback image for mobile screens. On the fallback image only I want the caption TEXT not to appear.
I tried with following code, but no effect:
@media only screen and (max-width: 768px) {
div#full_slider_1 .slideshow_caption .page-id-2 {
display: none !important; }}
Could pls you help me out?
Thanks a lot
Hey JantienM,
Here is the code you can put in Enfold > General Styling > Quick Css, if it does not work, put into themes/enfold/css/custom.css
@media only screen and (max-width: 767px) {
.av-mobile-fallback-image .av-slideshow-caption {
display: none;
}
}
If you need further assistance please let us know.
Best regards,
Victoria
Hi Victoria,
I changed it into:
.av-mobile-fallback-image .av-slideshow-caption .avia-caption-content {
display: none;
}
That way de title is still visible and only the subheader is not visible.
Thanks a lot!
Topic can be closed.