Nuntius: how to change background's colour of the pages?

  • Unknown's avatar

    Hey,
    I would like to change the background’s colour of the pages and articles of my blog untantraaparis.com that are currently white and grey. Is it feasible?

    Thanks in advance,

    Eric

    The blog I need help with is untantraaparis.com.

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

  • Unknown's avatar

    Hi Eric,

    This is a job for Custom CSS, which you already have since you own the Custom Design upgrade.

    First of all, in case you didn’t know, this help page will show you how to enter the custom CSS code: http://en.support.wordpress.com/custom-design/custom-css/

    The following CSS will alter the main article area (that used to be white):

    #content {
    	background: #ff0000;
    }

    I’m not quite sure if that’s the area you’re referring to or not. If you want the inner post area instead, try this:

    #content .hentry,
    .entry-utility {
    	background: #00ff00;
    }

    Lastly, here’s the CSS for the sidebar area:

    #sidebar-primary {
    	background: #00ff00;
    }

    You will notice that my color examples are pretty garish (intentionally, to show you where the change is). You can change the color code to something you like. Here’s a good site that helps you get the code for any color you want: http://html-color-codes.info

    Finally, we have a specific forum for CSS Customization, this way: https://en.forums.wordpress.com/forum/css-customization If you need any other help with CSS in the future, please post there to get faster and better answer.

    Hope this helps!

  • Unknown's avatar

    Thanks for your advices that helped me a lot!
    I will have a look at the specific forum and get more information!

  • The topic ‘Nuntius: how to change background's colour of the pages?’ is closed to new replies.