Hi, i have a simple clran template to my presell page. the background color is white and the post area (800px frame) is with also. this is the code in the style.css after i try to edit: /* begin Page */ body { margin: 0 auto; padding: 0; background-color: #00000; background-image: url('images/BGcolorblue.jpg'); background-repeat: repeat; background-attachment: scroll; background-position: top left; } and guess what the background color? still white! how can i change it p.s - the BGcolorBlue.jpg is a blue small pixel photo thanks
It is also possible to use background-color: black; ... or white, or red, green, ... I am only using hex codes, just to let you know
is the background image showing up? You may have misspelled it with incorrect capital letters. Also make sure the file is saves as .jpg and not .JPG as that causes problems too
Idan, This is how it should be: CSS: .background{ background-color: #000000; } Taken from: http://hex-code.com/000000 Behatzlaha.
ok so you want to just change the color try this but before the code you should probally put the tag where you want to put the color soo say. body { background-color:red; } h1 { background-color:#ffff00; } p { background-color: regb(255,255,0) }