changing body colour

  • Unknown's avatar

    how can i change the white body of the page (that has the text on it) to black?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    To change the main content area background color for that Forever theme, I have the following to your Appearance → Themes → Customize → CSS panel:

    #page {
    	background: #000;
    	color: #eee;
    }

    If you wanted to remove the outside border because it looks strong after the color update, you could remove it by updating the example to this:

    #page {
    	background: #000;
    	color: #eee;
    	border: none;
    }
  • The topic ‘changing body colour’ is closed to new replies.