SitePoint Sponsor

User Tag List

Results 1 to 5 of 5

Thread: Tables

  1. #1
    SitePoint Wizard Dangermouse's Avatar
    Join Date
    Oct 2003
    Posts
    1,024
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Tables

    Could someone fix this;
    http://www.m3d.me.uk/tmp/

    The table is meant to go 100%, i think its something to do with the rows and columns, i never did get the hang of tables

    Thank you.

  2. #2
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,456
    Mentioned
    34 Post(s)
    Tagged
    1 Thread(s)
    that's easy

    it does go 100%

    check the footer, it is part of the table

    your table contains two columns

    your header rows only specify the first column

    you probably want colspan="2" on those TDs
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  3. #3
    SitePoint Wizard Dangermouse's Avatar
    Join Date
    Oct 2003
    Posts
    1,024
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats what i thought, you mean like:
    HTML Code:
       <tr>
             <td colspan="2" class="footer">
                <p>Footer left</p>
             </td>
             <td  colspan="2" class="footer" bgcolor="#003063" height="18" align="right">
                <p>Footer right</p>
             </td>
          </tr>
    Doesnt fix it, just the same

  4. #4
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,456
    Mentioned
    34 Post(s)
    Tagged
    1 Thread(s)
    no, dude, your footer row already has two columns, it's the other rows, the ones with only one column at the moment, that need colspan="2" so that they span their one column across the two in the footer


  5. #5
    SitePoint Wizard Dangermouse's Avatar
    Join Date
    Oct 2003
    Posts
    1,024
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    God dammit im thick. Thank you

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •