I changed the color of the site title with css and made it white in the elementor page editor. But when I open my website in a separate tab, the site title color is black. How can I solve this problem? Thank you.
I changed the color of the site title with css and made it white in the elementor page editor. But when I open my website in a separate tab, the site title color is black. How can I solve this problem? Thank you.
2
Answers
Few things you have to check.
Try to add "!important" to your rule.
Sometimes your style is not important and WordPress uses style from another place.
Here is an example:
.body { background-color: coral!important; }
Btw this is not a good practice, but it is an easy and fast solution!