When I put the caption on my homepage, it only takes up about 25% of the image. How do I make it cover about 75% of the image? In other words, I’d like to have it spread out a bit more. Here’s the site http://46e.6f9.myftpupload.com/
Hi dpotter1972!
use this code in Quick CSS field:
.avia-caption-content.av_inherit_color {
width: 285%;
}
and adjust as needed.
Best regards,
Andy
Thanks Andy, that worked on the desktop version, but the mobile version now cuts off the text. See link to snapshot of portrait and landscape views on iPhone.
Hi,
Please try the following CSS as well:
@media only screen and (max-width: 767px) {
.avia-caption-content.av_inherit_color {
width: auto !important;
}
}
Regards,
Rikard
Thank you! That worked!