Hi support team. I have a site where H1 and H2 title alignment have to switch from right to left on a given viewport. I have tweaked this page https://dev.ste-anne-de-la-pocatiere.com/municipalite/conseil-municipal/ that behave correctly with this custom CSS:
@media (max-width: 767px){
.e131-8.x-text .x-text-content-text-primary {
text-align: left;
}
.e131-9.x-text .x-text-content-text-primary {
text-align: left;
}
.e133-8.x-text .x-text-content-text-primary {
text-align: left;
}
}
The problem is that the .e131-8 part of the tag is different on each title of each page .
Here is another page https://dev.ste-anne-de-la-pocatiere.com/citoyens/covid-19/
I did not find how to target these titles globally. I need help.