I tried adding the following to style.css but it doesn’t update the mobile caption. I tried in quick css too.
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
.slideshow_align_caption {
vertical-align: top !important;
}
Hey Orsha,
Try changing it to this code:
@media only screen and (max-width: 480px) {
.slideshow_align_caption {
vertical-align: top !important;
}
}
Hope this helps :)
Best regards,
Nikko
That helped. Thanks so much!