View Single Post
Old 15-01-07, 11:45 PM   #8
Ping
Guest
 
Posts: n/a
Default

I'm guessing your index.htm file is sitting in the 'index_files' folder. With your code you're telling it to look for images in a folder called 'index_files' in the same folder, which there won't be because you're ALREADY in that folder...

Try removing 'index_files/' from your image code on index.htm.

i.e. instead of
Code:
[img]index_files/image4941.jpg[/img]
set them to
Code:
[img]image4941.jpg[/img]
etc...

  Reply With Quote