Automatic css changes in cherry outline in wordpress

I used this template http://www.templatemonster.com/demo/50494.html

when i make css changes it works but after a while it automatically reverts all my changes and gives me the default css.

A thread in cherry wireframe who has an idea how can I stop it or how can I make my css changes in this thread

I asked my question in monster template but they haven't answered me yet.

+3


source to share


3 answers


I faced the same problem. Then put your custom css codes in theme options. then won't come back.

Below you can see a list of reasons that cause problems with CSS changes (for example, fixing changes made using template styles).

-Changes were performed in CherryFramework files instead of themeXXXXX child theme files.

-Changes were performed in main-style.css file.

-Changes performed in themeXXXXX/style.css file without declaration of !important property.

-Changes performed in Custom CSS section were not saved before updating CherryFramework and were not put back and saved after update.

      

IMPORTANT: All CSS changes must be done in the child theme. It is usually named as themeXXXXX. Do not make changes to the CherryFramework folder, as all changes will be lost after CherryFramework is updated.



1-style.css is the main CSS file. This is necessary for the theme to function properly, you can also add custom CSS styles.

2-style.less - a .less file with styles for the theme styles.

3-main-style.css - CSS file with theme styles. It is generated automatically from the style.less file, so you MUST NOT make changes to the main-style.css file.

You can find more information here. http://info.template-help.com/help/wordpress-cherry-framework-keeps-reverting-my-css-changes.html

+3


source


I know this is an old feed, but I thought I would add my 2c. I also faced the same problem. If possible, edit all css in Cherry parameters. Only edit in main-style.css if that doesn't work. Cherry CSS options overwrite everything except inline css. As soon as the cherry options (custom css or any changes or even just click save), all changes in main-style.css will be lost.



Once you save anything in main-style.css the cherry options cannot be changed or your css will be lost.

+1


source


When you move a website containing a cherry frame job

Follow the instructions below Remove the uninstall files from the child theme. 1.the theme root / style.less.cache 2.bootstrap / less / bootstrap.less.cache

Delete these 2 files and your theme will run smoothly.

0


source







All Articles