I was just trying to change my site around a little, but I bumped into a problem which has never happened me before. I want to be able to test the site offline, so this problem is really annoying.
How come when i try to do this:
#logo{
width:145px;
height:41px;
background:url('http://biscuithead.ie/images/logo.png') center no-repeat;
display:block;
float:left;
cursor:pointer;
}
it works, but If I change the background line to:
background:url('/images/logo.png') center no-repeat;
or
background:url('images/logo.png') center no-repeat;
or
background:url(images/logo.png) center no-repeat;
or
background:url(/images/logo.png) center no-repeat;
it dosent work?
The image only seems to display through css when it is actually on the server
I am using DreamWeaver CS5.
Can anyone help we with this weird problem?
../images/logo.png?