rik1304
asked 11 years ago

Hi,

I have been trying to change the background color of DW minion for sometime. I am some what familiar with HTML/CSS and have attempted to change the background-color tags in Dashboard > Appearance>Editor. The Style.css and is empty for the most part with very little code and nothing related to CSS for the most part. Below that link is editor-style.css which I assume is what i need to modify. I have attempted to change a few things here but have had no success in changing anything on my site.

Thank you for your help.

2 Answers
DominicStaff
answered 11 years ago

You can go to the editor-style.css file and main.css file in the folder path”wp-content\themes\dw-minion\assets\css” to know more information. We have developed all CSS codes on two files: editor-style.css file and main.css.

Please let me know what you wish to customize ( give more information with full details or a screenshot), we are willing to assist you.

Also, to change the theme background color, you can log in to Dashboard > Appearance > Editor > open the style.css file > Add the following codes:

 

 
#page {
background: #...;
}

Regards,
Dominic

rik1304
replied 11 years ago

Hey,

rik1304
replied 11 years ago

Thanks for you help Dominic. I have figured it out and made some changes. One thing i noticed was that once I shrink the browser width below 1200 px, my background image disappears and a white background is displayed. Any idea how to correct this from happening so it responds well to changes?

DominicStaff
answered 11 years ago

To resolve this problem, you can add the following code in the style.css file.


.site-main {
    background: none;
}

Regards,
Dominic

Powered by DW Question & Answer Pro