Can you change the background color of DW Focus?
2 Answers
To change the background color of DW Focus, you can log in to Dashboard > Theme > Customize > General Settings > Add the following code to the “Header Script”
<style>
body {
background-color: #... !important;
}
</style>
Regards,
Dominic
That worked now can I make the main content area white?
To change background main content area, you can add the following code to the “Header Script”
<style>
.container {
background: #fff;
}
</style>
Regards,
Dominic
Please login or Register to submit your answer