Is there any plugin to change the background color of the site? The members do not like the white!
Goto yoursite.com/admin/theme/css and add the css code below (depending on what you want to change) to your custom css and save.
Use this css code to change the canvas background color:
.ow_canvas{
background:#color code;
}
And this one to change the site body color:
body{background:#color code;}
Use this tool to generate color codes http://www.ewtnet.com/p/hex-color-code-chart-generator.html
Let me know if this is what you wanted to achieve.
paste this code in your custom css to change your body bg color to dark blue.
body{
background:#0B1A7B;
}
The code you pasted above is to change the main menu styles.
paste this code in your custom css to change your body bg color to dark blue.
body{
background:#0B1A7B;
}
body{
background:#0B1A7B !important;
}
But note that if your theme has background image, it might be a problem