I want to modify the theme to give my content a white background instead of having it all on black. Can anyone guide me in modifying the style.css file to achieve this?

Comments

devsaran’s picture

Status: Active » Closed (fixed)

Add the following css code to the style.css file

body {
    background-color: #fff;
    color: #333;
}