View Full Version : My DIV isn't working HELP!!!


Strawberryz
05-27-2003, 02:49 AM
Hi I'm trying to set up a page, and I'm trying to put 2 DIV sections on it. One works fine, but the other one is really weird. I'm trying to put the menu on the top right between the red stripes at:
http://www.angelfire.com/ny5/silverdancer150/new.html

This is the code I'm using:

<div align="left" style="position: absolute; left:36px; ;top:5px;" align=left>
<img src="title.jpg">
</div>
<div align="left" style="position: absolute; left:35px; ;top:585px;" align=left>
<iframe src="blog.html" width="665" height="1500" frameborder="0" style="border: 1 solid #ff0000" scrolling=no>
</div>
<div align="left" style="position: absolute; left:760px; ;height:1000; ;width:216; ;top:20px;" align=left>
<iframe src="menu.html" width="216" height="1000" border="0" frameborder="0">
</div>


It should work, but it's not. Please help me!!!

Spirit892
05-27-2003, 09:46 PM
The left DIV is overlapping your iframe and the red lines. Try adjusting how far the DIV is from the left. Perhaps you could try this instead...

<div align="left" style="position: absolute; left:36px; ;top:5px;" align=left>
<img src="title.jpg">
</div>
<div align="left" style="position: absolute; left:35px; ;top:585px;" align=left>
<iframe src="blog.html" width="665" height="1500" frameborder="0" style="border: 1 solid #ff0000" scrolling=no>
</div>
<div align="left" style="position: absolute; left:800px; ;height:1000; ;width:216; ;top:20px;" align=left>
<iframe src="menu.html" width="216" height="1000" border="0" frameborder="0">
</div>

Just keep adjusting and trying different lengths until you get the look you want.

Also, if that doesn't work to your satisfaction, its because the background isn't wide enough. ;)

As for waiting, be patient. We arent superheros... :)