Hello,
The idea is to add your own Css command in order to change text properties.
Here
, you will have an example of how to add your own custom Css.
And now some advice to create a good css command, and the point is the to have a good selector.
So, how to build high priority css command ?
1. First the minimum necessary to function properly :[/b]
Check that your selector is well written, good class (or Id) html and no mistake or typo
If your command is visible in your browser inspector tool, but is overridden (css command crossed out), then his priority isn't strong enough.
2. Now, some css priority system explanation :[/b]
From less to the highest priority :
.html_class_element {command: value}
.html_class_module .html_class_element {command: value}
.html_class_page .html_class_module .html_class_element {command: value}
.html_class_page .html_class_module .html_class_element {command: value !important;}
Note, that if
2 css commands have strictly the
same selector, then the
last written in the css file will be the one used.
Learn more,
here
about selector and see more about text command, it's
here
.
Regards