ericwlee 0 Report post Posted February 14, 2011 Hi everyone, I was wondering if anyone could assist me? My site is: www.ecomv.net The background is white as you can see. I would like some select pages to have a green background. For instance, "Who we are." I'll also want to change a few other pages to the same green as I continue with creating my site. I'm not sure how to solve this. Searching the forum, I found this code: body.page-id-35, body.page-id-35.fixed_width { background: blue; } I modified the above, addressing "Who we are" page, and inserted in my custom CSS and nothing happened. Any advice is appreciated. Thanks! Share this post Link to post Share on other sites
cmunns 16 Report post Posted February 14, 2011 You may want to try this one out. ` .page-id-64.canvas #page, .page-id-64.full_width #page, body.page-id-64.fixed_width { background-color: green; } ` Share this post Link to post Share on other sites
ericwlee 0 Report post Posted February 14, 2011 Hi Adam, Thanks for the response! That does the trick half of the way. Is there a way to tell the content area to be green on a specific page as well? Or should it be made transparent so the background green shows through? If so, how might i do that? Eric Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted February 15, 2011 For the other half you need to find the different page ids for the different pages you want to alter. Firebug is the key to all your customization needs: http://www.pagelines.com/docs/changing-colors-fonts You can find the id of any page via `` with the help of Firebug. Thanks, Bryan Share this post Link to post Share on other sites
ericwlee 0 Report post Posted February 21, 2011 Hi Bryan, This is the page id: <body class="page page-id-228 page-template page-template-page-beta-php logged-in canvas"> I want the background for the content area to be: "background-color: #D6E03E;" How would I translate this information to put into my custom CSS ? My CSS knowledge is pretty limited, as you can probably tell! Thanks in advance. Eric Share this post Link to post Share on other sites
cmunns 16 Report post Posted February 21, 2011 the content area can be changed from white to transparent using this; ` .canvas #page-canvas { background-color: transparent; } ` just add your page id to the front as i did in the exampel above. Share this post Link to post Share on other sites