Help - Search - Members - Calendar
Full Version: Complete Noob Question about iframe align
HTMLHelp Forums > Web Authoring > Markup (HTML, XHTML, XML)
Derek
Hello,

A very noob question from me for the folks who know out there.

I have a site where I am placing a piece of code or whatever it is called (see below) that was created by a company. I simply want the iframe and all in it to be aligned to the left or right of the page while the text I have entered manually to the page aligns opposite the iframe.

You should see some of the messes I am creating by trying to read examples off the net!

smile.gif

Anyway any help would be greatly appreciated and thanks in advance. iframe code just below

thanks
Derek

<iframe style="margin-left:20px;background-color:#FF9911;overflow-x:hidden;display:block" id="file_upload_iframe" name="file_upload_iframe" src="https://www.yousendit.com/v1/ibox.php?sitebox=1679392&sh=3d90adc2eb6f36282531cd6310749567&send_notification=true&custom_redirect=true" width="365" height="275" marginwidth="0" align="middle" frameborder="75" allowtransparency="true"></iframe>

just below is the text I want to align to either left or right of iframe and have proper line spacing:

<P ALIGN=Right><font color="#FF9911"><span style="font-size: 14px;">
The code, the code! Ok so here is the cool part (at least to us simple folk)<p>you fill in your email address, subject, put in a<p> few notes/comments regarding the job or just to say hello<p> then browse your computer until you locate the<p> file and or files you wish to send and add them on<p>e at a time or I am told by whole folder. Size limit<p> is 2 gig per send so if you are going over that (YIKES!)<p> you will need to do more then one send to us. When<p> finished adding files just click SEND IT and zip,<p> biff and bang we are notified of your files arriving<p> and we pick them up! Simple right. <span style="font-size: 20px;"><b>Thank you!</b><br>
pandy
Float the IFRAME left and give the text a left margin so it can't wrap under the iframe (should it get high enough). Like so.


HTML
<iframe frameborder="0" width="365" height="275" allowtransparency="true" style="margin-left:20px; float: left" id="file_upload_iframe" name="file_upload_iframe" src="https://www.yousendit.com/v1/ibox.php?sitebox=1679392&sh=3d90adc2eb6f36282531cd6310749567&send_notification=true&custom_redirect=true" ></iframe>


<P style="margin-left: 395px; font-size: 14px; color: #FF9911; background: inherit">
The code, the code! Ok so here is the cool part (at least to us simple folk) you fill in your email address, subject, put in a few notes/comments regarding the job or just to say hello then browse your computer until you locate the file and or files you wish to send and add them one at a time or I am told by whole folder. Size limit is 2 gig per send so if you are going over that (YIKES!) you will need to do more then one send to us. When finished adding files just click SEND IT and zip, biff and bang we are notified of your files arriving and we pick them up! Simple right.
<br><br>
<span style="font-size: 20px; font-weight: bold">Thank you!</span>
</p>


BTW the value of frameborder is bolean. It can only be 1 or 0, on or off.
http://htmlhelp.com/reference/html40/special/iframe.html
Derek

Thanks very much Pandy for the help and information!

best regards
Derek
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.