|
thats gonna depend on how you're directory structure is.
If you have website=public_html
and
images = public_html/images
then "/images/filename.jpg" should work.
If you're calling the images from a CSS file in another directory (public_html/css), then you have to 'root' your call like "../images/filename.jpg"
One thing - MAKE CERTAIN THAT THE CASE IS EXACT. If you have an image name "Junior.JPG", case matters. That file is different than "junior.JPG" or "Junior.jpg" or "JuNiOr.JpG"
|