[Zope] Simple (I hope) question re: images
Lennart Regebro
lennart@regebro.nu
Tue, 29 Jan 2002 14:30:13 +0100
From: "Max M" <maxm@mxm.dk>
> <img src="images/example.gif">
Very bad idea, since you then get a relative path to the images, emaning
that images doens't get cached properly, since the webbroswer thinks
/image/bla.gif is another picture than /foo/bar/image/bla.gif.
But if you instead write: <img src="/images/example.gif"> it would work.
However, in both these cases you don't automatically get the height, with
and alt-text in the image-tag.