Hi! I need a little help placing an image to the signup page of my social network. Here's what i did: CSS: Signup { height:160px; background-color:transparent; } #Signup .Image1 { background-image: (../../../design/images/signup.png); position:relative; } HTML: <div id="Signup"><div class="Image1"></div> Can anyone tell me what i am doing wrong?
Try this: #Signup { height:160px; background-color:transparent; } #Signup .Image1 { background-image: url(../../../design/images/signup.png); } Code (markup):
That's an odd way of doing this, you could just use on DIV Anyway make sure you close both DIVs: <div id="Signup"><div class="Image1"></div></div>
It's not working. The Signup class seems to work since there is free space for the image now. However, it doesn't appear. Have a look