Hi there,
I have some circles with caption hovers in the benefits section of my site. Looks fine on a large screen and also when it’s mobile responsive. However on medium size screens like 13″ or iPad the text in the hover of the circles bleeds out of the circle and becomes unreadable. Is there a way to make the text responsive as the circles go smaller?
Cheers,
Shirtcliffe
Hi Shirtcliffe!
Add this to your custom CSS.
@media screen and (max-width: 767px) and (min-width: 800px) {
.av-image-caption-overlay-center p {
font-size: 12px !important;
line-height: 12px !important;
}
}
Regards,
Elliott