As the title says, when Zoom is activated in Safari on iPhone at >100% the text in the title box on the home page fails to wrap.
Hey Donal,
Could you share a screenshot highlighting the problem please?
Best regards,
Rikard
Hi,
Thank you for the screenshot.
We can decrease the font size and adjust the word-wrap property to make sure that whole words break into the next line instead of single characters.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
.avia-promocontent h1 span {
word-break: break-word;
font-size: 20px;
}
}
Expected result: https://1drv.ms/u/s!AjjTfXSRbKTvwFtJsaq9EhFLeQzO?e=ZerX9i
Best regards,
Ismael
Thanks. Do I add that to Quick CSS?
Donal