Hi, I can see how to change the background on pages, but is it possible to change the background color for individual product posts?
It currently defaults to white and I would like to blend it into my color choices for other page and navigation bar backgrounds.
3:26 pm October 7, 2009
Market Admin
Admin
posts 4756
2
Post edited 7:28 pm – October 7, 2009 by Market Admin
That can probably be changed in the stylesheet settings. (style.css) It's probably "#content" or "#content .desc" that you're looking for.
A good tool for playing around and working with stylesheets is a plugin for the Firefox browser named "Firebug".
I highly recommend it, as it makes testing and locating stylesheet elements a breeze. You just right click on the page, and it'll tell you what the element is that controls that area. Very nice.
3:31 pm October 7, 2009
Cheese, Gromit!
Member
posts 42
3
Post edited 7:37 pm – October 7, 2009 by Steve FitzGerald
Market Admin said:
That can probably be changed in the stylesheet settings. (style.css)
I made a change in between the Body brackets for background, trying a HEX code and a Named Color, but it made no difference. Am I looking in the wrong place in the style.css for the Post background (not the Page background)?
3:37 pm October 7, 2009
Market Admin
Admin
posts 4756
4
"Body" is not the right place for the post background.
Above I said "#content" or "#content .desc". You'll need to add a new element line such as:
background-color: #FF0000;
3:38 pm October 7, 2009
Cheese, Gromit!
Member
posts 42
5
Oops, I missed that. Will look for those and let you know. I just added Firebug. Thanks.