I need help with placing all the content on a white background. The only thing on the white background presently are the words "Site Home Page". I've moved things around, but haven't been able to do it correctly. Can you look at the code below, (and the image attached) and guide me as to how to put the content all on a white background? Thanks. <html> <head> <title></title> <table width="200%" bgcolor="#ffffff" > <tr><td align="center"><b>Site Home Page </b></td></tr> <font face="Arial" color="#000000" size="4"><b>Text Text Text</b><br><font face="Arial" color="#990000" size="4"><b>TExtText Text</b></font><br> <font color="#FF9900">_______________________________</font><br> <font face="Arial" color="#6b6b6b"size="2"> Whenever it's convenient. <br> <br><br> <div style='float:left;width:47%;border:none;'><font face="Arial" color="#EE7600" size="4"><img src="images/re.jpg" alt="" width="25" height="25"> <b> TEXT</b></font><font face="Arial" color="#6B6B6B" size="2"> <br> TEXT TEXT.</div> <div style='float:left;width:47%;border:none;margin-left:1%;border-left:0px black solid;'><font face="Arial" color="#EE7600" size="4"><img src="images/lis.jpg" alt="" width="25" height="25"><b> </b></font><font face="Arial" color="#6B6B6B" size="2"><br>TEXT TEXT TEXT <br> .</font></div> <br><br> <font color="#990000">____________________________________</font><br><br> </P> <tr><td align="center"> </td></tr> </table> </body> </head> </html> Code (markup):
Try this code: <html> <head> <title></title> </head> <body> <table width="200%" bgcolor="#ffffff" > <tr><td align="center"><b>Site Home Page </b></td></tr> <font face="Arial" color="#000000" size="4"><b>Text Text Text</b><br><font face="Arial" color="#990000" size="4"><b>TExtText Text</b></font><br> <font color="#FF9900">_______________________________</font><br> <font face="Arial" color="#6b6b6b"size="2"> Whenever it's convenient. <br> <br><br> <div style='float:left;width:47%;border:none;'><font face="Arial" color="#EE7600" size="4"><img src="images/re.jpg" alt="" width="25" height="25"> <b> TEXT</b></font><font face="Arial" color="#6B6B6B" size="2"> <br> TEXT TEXT.</div> <div style='float:left;width:47%;border:none;margin-left:1%;border-left:0px black solid;'><font face="Arial" color="#EE7600" size="4"><img src="images/lis.jpg" alt="" width="25" height="25"><b> </b></font><font face="Arial" color="#6B6B6B" size="2"><br>TEXT TEXT TEXT <br> .</font></div> <br><br> <font color="#990000">____________________________________</font><br><br> </P> <tr><td align="center"> </td></tr> </table> </body> </html>
Thanks for your reply and assistance. But I'm sorry to report, I copied in exactly as you provided it, and there was no change. It looked exactly like my original code that i need help with. Any other suggestions? Thanks again.
The </head> that is down the bottom of your code should be near the top.. before the <table> begins. There should also be a <body> after </head>. It should be... <html> <head> <title></title> </head> <body> <table .... ..... </table> </body> </html> Code (markup): See if that helps