• Hello,

    I want to some codes in Theme Editor (e.g. font, color, position of menu) . When I clicked “Update file” (style.css), it replied “Updated successfully”. However, my theme does not change accordingly.
    Can you please help me how to make it work properly?

    Thank you.
    Tam

Viewing 1 replies (of 1 total)
  • Hello, we will help you with that!

    We will need you to be more specific, what is not changing? how are you making the changes? can you put more examples?

    Under my experience, I can give you some general advises until you give us more specific details.

    First of all, always you change your CSS style, remember to clear the cache of the browser, maybe you are doing the changes well but your cache is not being updated. So always remember to clear the cache before to refresh your page!

    Also, when some changes are not being applied to your style, try to use the !important rule.
    For example, if you are trying to change the colour of a paragraph with

    p {
    color: red;
    }

    and if it is not working, try to do it like the following.

    p {
    color: red !important;
    }

    This will avoid cascade issues with the CSS, but remember not to abuse this rule, it can make for messy and hard to maintain your CSS.

    For further information try to give us more details about your issue and we will continue helping you! 🙂

Viewing 1 replies (of 1 total)

The topic ‘Edit code in Theme Editor but theme not changed’ is closed to new replies.