PDA

View Full Version : How could I achieve this?



sophie
October 12th, 2002, 11:33
Attached is a paint picture I did of what I'd roughly like my site to look like. I'm fine with the basic tables but I want the image of Stitch to overlap the text... I think I need to use div layers, I'm not sure. Can anyone give me an HTML snippet of how I could put the picture over the text (see image)?

aphel aura
October 12th, 2002, 14:32
What image?

meow
October 12th, 2002, 23:12
<style type="text/css">
#blah { position: relative; top: -300px; left: 250px }
</style>

-----

<img src="pic.gif" width="400" height="400">
<p id="blah">
Don't you rather want the text over the image?</p>