I’ve got an image on the Home page of my website (Boat with Blue Overlay), when you view it in desktop mode you can clearly see the caption (Did You Know, . . .). Unfortunately when you see this image on a mobile device the text only partially shows and then runs into the next section overlaying it.
Is there a way to simply disable the text (aka caption) when showing on a mobile device?
Hey Kimberly,
Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 767px) {
.home #av_section_3 .av-image-caption-overlay-center {
font-size:20px !important;
}
}
Best regards,
Rikard
That works, thank you!