Click to See Complete Forum and Search --> : Help!!! Iframe Alignment!


Toole
02-01-2008, 02:55 PM
Hey guys, just recently began making a portfolio site but I am having loads of trouble getting an iframe to align, I am using this piece of code:-
<iframe SRC="http://www.google.com" height="700" width="1024" HSPACE="100" align="middle" </iframe>

I cant see anything wrong here, yet it insists to align itself to the very bottom of the page when i in fact want it located roughly 150 pixels from the top of the page, can anyone help?

WebJoel
02-01-2008, 05:10 PM
<iframe SRC="http://www.google.com" height="700" width="1024" HSPACE="100" align="middle"> </iframe>Missing-implicit tag closure required.

Better than this, try:

<iframe SRC="http://www.google.com" style="700px; width:1024px; margin-top:100px;"> </iframe>