I'm having a problem linking stuff together.
Say for instance I'm using this code
<html>
<head>
<style type="text/css">
body
{
background-image:url('..\Pictures\SpaceMan.gif');
}
</style>
</head>
<body>
<p> blah </p>
</body>
</html>
When I use that code It won't display my image for the background. It does the same thing if I just try using the "img src" tag and link it to the same picture.
I'm assuming it's because I'm not linking the picture correctly. The location of the picture is found in a folder that is one up from the source code hence the ".." and then in a folder called Pictures and the image is called SpaceMan.
This works in IE6 but not in Mozilla Firefox. Can someone please tell me how to do this correctly.