I have this site im working on.. i get bored sometimes http://xboxgalleries.com/template4/ And when ever you click something (the only one i have right now) http://xboxgalleries.com/template4/nes/nesmenu.html None of the images show up, whats going on? :shrug: :sexy2:
The problem is, you went up a directory. Let me put it this way: you started at the http://xboxgalleries.com/template4/ directory. You went up a directory to the nes directory, but your images are still at http://xboxgalleries.com/template4/images/ you'll need to access them by putting a "../" in front of your links. For example: Your style sheet should look like this: <link rel="stylesheet" href="../style.css"> Your first image should look like this: <img src="../images/img_2.jpg" height="100%" width="100%"> Basicly you're going to have to go down a directory with the dot dot slash in order to get to your images. Or you could just hardcode the links, but i don't recomend that, as it makes the site harder to change and update. You'll need to make this change to all of the links and images on the page.