skip to Main Content

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


  1. Few things you have to check.

    1. Clear the Cache of browser and website(if website have any cache active)
    2. Check the color of the title style. It should be global color.
    Login or Signup to reply.
  2. 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!

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search