Hello,
I used this code to center align all text on mobile:
@media only screen and (max-width: 767px) {
p, H1, H2, H3, H4 { text-align: center; }}
I have two text blocks I want to exclude from this rule (left alignment also on mobile). Is there any css to fix it?
Thank you very much!