CSS image problem

gladia31

New Member
Messages
2
Reaction score
0
Points
0
i dont where i was wrong because i cant make my css image show in my website.
here is the css code:
Code:
div.Logo
{
	background-image:url('images/Gladiator.png');
	background-repeat:no-repeat;
	background-position:left;
}

is there somthing wrong in my css code?
 

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
You seem to have figured it out.

Image paths in css files are relative to the directory holding the css file.
 

nuwanpra

New Member
Messages
45
Reaction score
2
Points
0
Code:
background:url(../images/Gladiator.png) top left no-repeat;
 
Last edited:
Top