If you want to add an image for your background then change: body { font-size: 62.5%; /* What did one em say to another? Who's your daddy?! */ font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; color: #333; text-align: left; margin: 0 0 20px 0; padding: 0; background-color: #ccccff; } Code (markup): To this: body { font-size: 62.5%; /* What did one em say to another? Who's your daddy?! */ font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; color: #333; text-align: left; margin: 0 0 20px 0; padding: 0; background: #ccccff url("IMAGEURLHERE"); } Code (markup): You can also specify the repetition of the image, the location where it starts etc... with that one line. You'll probably find this article useful on background CSS: http://www.w3schools.com/css/css_background.asp Regards, Hodge
Yep, what he said. body { font-size: 62.5%; /* What did one em say to another? Who's your daddy?! */ font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; color: #333; text-align: center; /* Use the force Luke */ margin: 0; padding: 0; background: #CCF url("IMAGEURLHERE"); }