Can you please help. Why doesn’t my text wrap on the mobile phone, event though it does when scaled down on the desktop version. See attached examples.
Hi @piexec,
Thank you for writing in, that is because of the set font-size (3em) is still too big for small mobile. To resolve that please add this to your Headline’s Element CSS area
@media (max-width: 480px) {
$el .x-text-content-text-primary {
font-size: 2em;
}
}
Feel free to adjust that 2em value.
Hope it helps,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.

