I see a few problems with this
body { background-image: "pixURL" }
container { background-color: white }
contentL { background-color: white }
contentC { background-color: white; }
Are the contents ids or classes?
If ids it should be
Code:
body { background-image: url("pix.jpg"); }
#container { background-color: #ffffff; }
#contentL { background-color: #ffffff; }
#contentC { background-color: #ffffff; }
If classes change the # to . Every property needs to end with a ; and I think if you are using a name like you did you'd need it in quotes the straight entry is for hex code.
Corrections to my coding/thoughts welcome.
Bookmarks