Re: Beginner CSS user -
03-24-2009
, 11:52 AM
In your code you have three CSS rules one for "body" one for ".oneColElsCtr
#container" and one for ".oneColElsCtr #mainContent" the first one has a
declaration:
background-color: #003399;
in the second rule you have a declaration:
background: #FFFFFF;
in the third rule there is no style set for background color so it will
inherit the color of it's container.
The values: #003399 and #FFFFFF are the hex values for the color. There are
other ways to declare color but I think this is most comon. If you search on
Google for "color hex value" or something like that you will probably find
color pickers and tables that show various colors and their values.
You can change those values to your heart's content!
Regards
Martin |