1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

HTML noob needs your help with a simple Table.

Discussion in 'HTML & Website Design' started by x0x, Sep 26, 2009.

  1. #1
    <table width="500" height="300" border="0" cellpadding="10" background="images/Untitled.png" style="background-repeat:no-repeat">
     
     
      <tr>
      
        <td valign="top">&nbsp;</td>
    
        
      </tr>
      
      
      
      <tr>
        <td valign="top">&nbsp;</td>
      </tr>
      <tr>
        <td align="right">&nbsp;</td>
      </tr>
    </table>
    HTML:
    I need the first row to have three colums (cells). I just can't do it :confused:
     
    x0x, Sep 26, 2009 IP
  2. Paul8368

    Paul8368 Well-Known Member

    Messages:
    614
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    110
    #2
    Heres the code for your split

    
    <table width="500" height="300" border="0" cellpadding="10" background="images/Untitled.png" style="background-repeat:no-repeat">
     
     
      <tr>
      
        <td valign="top">&nbsp;</td>
    
        
        <td valign="top">&nbsp;</td>
        <td valign="top">&nbsp;</td>
      </tr>
      
      
      
      <tr>
        <td colspan="3" valign="top">&nbsp;</td>
      </tr>
      <tr>
        <td colspan="3" align="right">&nbsp;</td>
      </tr>
    </table>
    
    
    Code (markup):
    If thats not what you wanted let me know

    Paul
     
    Paul8368, Sep 26, 2009 IP
  3. x0x

    x0x Well-Known Member

    Messages:
    510
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    110
    #3
    Thank you!
     
    x0x, Sep 26, 2009 IP