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.
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
Hey,
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?
To resolve this problem, you can add the following code in the style.css file.
.site-main {
background: none;
}
Regards,
Dominic
Please login or Register to submit your answer