Want all the content on a white background

Discussion in 'HTML & Website Design' started by chrisj, Aug 16, 2007.

  1. #1
    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>&nbsp;&nbsp;&nbsp;<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>&nbsp;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>&nbsp; </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">&nbsp;</td></tr>
    </table>
    
    </body>
    </head>
    
    </html>
    
    Code (markup):
     

    Attached Files:

    chrisj, Aug 16, 2007 IP
  2. MichaelS

    MichaelS Guest

    Messages:
    595
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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>&nbsp;&nbsp;&nbsp;<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>&nbsp;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>&nbsp; </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">&nbsp;</td></tr>
    </table>
    </body>
    </html>
     
    MichaelS, Aug 16, 2007 IP
  3. chrisj

    chrisj Well-Known Member

    Messages:
    606
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    #3
    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.
     
    chrisj, Aug 16, 2007 IP
  4. ing

    ing Well-Known Member

    Messages:
    500
    Likes Received:
    38
    Best Answers:
    0
    Trophy Points:
    195
    #4
    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
    :)
     
    ing, Aug 16, 2007 IP
  5. MichaelS

    MichaelS Guest

    Messages:
    595
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    0
    #5
    I think that's the same thing I put. :)
     
    MichaelS, Aug 17, 2007 IP