Huub wrote:
> Ok, I'll try to be clearer.
>
> I have a picturre in JPG and I want to put it into a HTML file. There
> will be solid text that has nothing to do with the picture written
> partly over it, in such a way that both picture and text will be
> visible. Right now, when I put the pic on the page, either part of the
> text vanishes under the picture or the picture isn't visible.
> So, my wish is to make the picture see-through, so I can see the picture
> and the full text.
This isn't a GIMP problem, this is a HTML Problem. What you want is
something like
<div style="background-image:url(image.jpg);
background-repeat:repeat;
width:200px;
height:200px;">
Add your text here, it will appear over the background image
</div>
--
Bertrand


|