PDA

View Full Version : cant get background image to show



MISSG
11 Jun 2011, 04:00 PM
Hi

I am totally new to web designing and am only doing a site to start my new business (cake decorating). I have managed to get my head around a lot, and have uploaded what i have done so far to view online. However, for some reason, the image that i am using in the background wont show up, and i cant figure out why.

.outer{
background-image: url('../images/peach.png') repeat;
padding:100px;
padding-bottom:200px;
}

is this the right code to be using? what could i be doing wrong?
i am a total novice, please help!

Thank you x

FreshpageDesign
12 Jun 2011, 03:06 AM
background-image doesn't allow the 'repeat value.

Try

.outer{
background: url('../images/peach.png') repeat;
padding:100px;
padding-bottom:200px;
}