Thanks Elvin. What would you recommend as the most lightweight way to align text differently on mobile vs. desktop?
There’s no simpler way to do it but CSS and @media rule.
Example:
@media(min-width:769px){ /*desktop and tablets rule*/
.your-headline-class-here {
text-align: left;
}
}
@media(max-width:768px){ /*mobile rule*/
.your-headline-class-here {
text-align: center;
}
}
I’m not sure which element you’re pertaining to so I just added a .your-headline-class-here as an example. You can change the selector to the class of the headline you wish to target.