I am using the IMAGE content box with a two word caption at 40 px. Unfortunately the second word must be a bit too long because it does not show up on a mobile phone in vertical view. Is there a way to add some sort of css to scale the caption down just for mobile phone view?
see it here: http://www.dev-ep.cagraphicdesign.biz/services/team-exceleration/
Hey cagraphicdesign,
use this code inside Quick CSS field:
@media only screen and (max-width: 767px) {
.av-image-caption-overlay-center {
font-size: 23px;
}}
and adjust as needed.
Best regards,
Andy
Thanks for your quick response. I had to add !important to make it work…I am getting smarter!