Hi @oguzhanert,
Ah, I see what happened. It’s Themelia fault and this happens only with Turkish. Of course, I did not know that until now. Themelia check for language and adds corresponding class in the document body. For Turkish this is tr
.
The problem is because in the style.css Themelia has a rule .tr { text-align: right; }
, where the tr
should be short for text-right
. I will definitely fix that in the next release. It’s easy to remove this class from style.css because I never put it in documentation so there is no chance that anyone is using it, so I will do it soon.
Here is a quick temporary solution. Just drop following CSS rule in the customizer, Customize -> Additional CSS:
.tr {
text-align: inherit;
}