Hi,
My site looks great on desktop but on mobile (iphone 6) the captions on the full screen slider does not look right
what are my options for the caption text on smaller devices?
– Is it possible to have a replacement text (less copy)
– Remove some text?
Thanks
Any update?
Hi,
Thank you for using Enfold.
You cannot replace the text but you can hide it or adjust the font size:
@media only screen and (max-width: 768px) {
.responsive #top .slideshow_caption h2.avia-caption-title {
font-weight: 400 !important;
font-size: 11px !important;
}
}
Best regards,
Ismael
thanks
what is the code to hide it?
Hi,
Please try this if you want to hide it:
@media only screen and (max-width: 768px) {
.responsive #top .slideshow_caption h2.avia-caption-title {
display:none !important;
}
}
Best regards,
Rikard
That did not work to hide the captions :(
@media only screen and (max-width: 768px) {
.responsive #top .slideshow_caption h2.avia-caption-title {
display:none !important;
}
}
my site
Hi!
Please use this:
@media only screen and (max-width: 768px) {
.avia-fullscreen-slider .slideshow_caption { display: none !important; }
}
Cheers!
Ismael
Thanks. That works!
You guys are the best