If I set a different body font color in theme options > typography, this is not reflected in my site.
The standard element “Text” should give me a text in that color (I think) but it does not.
I know I can set the color per text, and even save that as a template, but that is tedious. I need my default text to be a certain color.
Hi There @fluxus
Thanks for writing in! Body font color is basically targeting paragraph text of your site.

Other elements such as headlines will not be affected. Also it will not affect to your V2 elements for example Text element, as it has it’s own customization options.

So in your case, one option would be to create your own CSS rule and add into your X -> Theme Options -> CSS area.
.my-custom-color {
color: red !important;
}
Then you assign that class name into your elements in a page.

Hope that helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.