The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
I have also tried "/images/image003.gif" with no success.
Any help would be appreciated.
Thanks,,, BigDoc
> Thank you, seems I needed to have the HTML
> src="http://www.mywebsite.co.uk/images/image003.gif"
> etc..
>
> Cheers all!
Depending on where you are calling the image from, it can sometime help (using relative url) to put a ../ before the link eg src=../images/image003.gif
This makes the link relative to the current folder thus:
../ = go to the next higher directory
image/ = choose that sub-directory
image001.gif = the filename required
In this example, if we assume the directory structure is:
\htdocs
\htdocs\images
\htdocs\pages
and you were in the pages subdirectory, using the src=../images/image003.gif would take you from /pages to /htdocs then into /htdocs/images then give you the filename.
Of course, if you were in a subdirectory of /pages, for example /pages/buttons, you can use multiple ../ to achieve the same effect: e.g. to go up 2 levels before getting into the folder structure, simply use src=../../images/image003.gif
I mention all of this for 2 reasons... its much better to use relative urls than full urls, especially for offline testing of the website, and secondly, its much less typing when creating new pages!!!
Hope this helps,
Dave
Cheers all!
If you're still not having any joy can you post the URL and the image file name?

And check your cases.
I have also tried "/images/image003.gif" with no success.
Any help would be appreciated.
Thanks,,, BigDoc