Hi, how can I align the form titles to the left but only for the English language on the page?
Thanks.
Hi, just making sure this didn’t got lost between all the other tickets ;) Thanks.
Hey!
Please add following code to Quick CSS
html[lang="en-US"] .wpcf7 p {
text-align: left;
}
Regards,
Yigit
That worked but the text is still not showing correctly – http://screencast.com/t/FfSqfrMIP
The text in the form titles still showing as RTL instead of LTR
Hey!
Please change the code to following one
html[lang="en-US"] .wpcf7 p {
text-align: left;
direction: ltr;
}
Best regards,
Yigit
Thanks.