Forum Moderators: open
although the support for transparecy is low. With the use of layers and Gifs yo could roll text under the transparent parts of the image.
PNG's support a much greater range of transparency but are not supported by all browsers (yet)
So to make the effect - create your gif with a alpha transparency and place within a layer abover your text. have the layer positioned over the Iframe so the text could be scrolled under the image.
Or - use flash?
so this is how a layer is created...
position: could be absolute, relative - here: use absolute
height: will be the same height as img is
width: will be the same width as image is
left: is the margin of your layer to the left of your HTML-page
top: is the margin of your layer to the top of your HTML-page
some other posibilities, but this should do it for you..
hope it helps
<div id="somename" style="position:absolute; height:xxx px; width:xxx px; left:xxx px; top:xxx px;"><img src="yourpic.jpg"></div>
<iframe SRC="somesource.htm" style="width:xxx px; height:xxx px;"></iframe>
careful to make the Iframe not bigger than the page - would cause double-scrollbars =)
It's an IE-ONLY solution - won't work on Opera, Mozille, Netscape-Browser