View Full Version : Anti-Iframe and Absolute Positoning


moonandsun211
06-24-2003, 10:06 PM
To put it frankly, I don't know HTML to save my little life. But, I created a picture and would like to put text over it using absolute positioning. My first thought was to try and Iframe (Because I wanted a scrolling text box over the picture) But... the site disabled certain words such as 'iframe' don't ask me why for I have no clue.

Now, my question is there a code enabling absolute positioning of Text Areas or is there a way to make a scrolling DIV...

If you know of anything, please post.

:read: I'll continue to check HTML and CSS help sites to see if there is a way around this Anti-Iframe problem.

zangerbanger
06-24-2003, 10:18 PM
Yes, here is the code for a scrolling div:


<div style="position:absolute; top:#px; left:#px; overflow:auto">
STUFF INSIDE SCROLLING DIV
</div>


Make sure you replace the #'s with your own info :) .

moonandsun211
06-25-2003, 12:19 AM
Thank you so much! This'll be great

zangerbanger
06-25-2003, 12:52 AM
Sorry I forgot to mention the width and height part :( . I sent you a PM with the real code :) .

moonandsun211
06-25-2003, 02:43 PM
than ks, it's working great! :)