in reply to Image display firefox problem

UPDATE: Looks like I was wrong here. Randal's got it right

You have one too many slashes in your URL. The proper schema should be file://, and you have file:///. Now on unix machines, it always looks like there are three slashes in a row, because file URLs are usually absolute, hence you have the extra / for the root directory. Try the following instead:

<img src="file://C:/Sunset.jpg" />

Replies are listed 'Best First'.
Re^2: Image display firefox problem
by merlyn (Sage) on Jun 19, 2005 at 13:51 UTC