Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Html Tables- What am I doing wrong?

Options
  • 24-09-2007 2:38pm
    #1
    Registered Users Posts: 1,757 ✭✭✭


    Hey guys.
    Am trying to achieve a certain table structure for a project of mine and I am
    certain it is probably something simple.
    I am no HTML expert by any means and I have very little experience (You gotta start somewhere eh?)
    but despite trawling through about a dozen html table tutorials none of them explained what I needed.


    Here is my (very) rough code:


    tableexample1.jpg


    And here is basically what I want to achieve:


    tableexample2.jpg

    Thanks very much for any help guys! :D


Comments

  • Registered Users Posts: 910 ✭✭✭rick_fantastic


    <table width="80%" border="0">
    <tr>
    <td colspan="2"><p> </p>
    </td>
    </tr>
    <tr>
    <td width="30%"> </td>
    <td width="70%"><p> </p>
    </td>
    </tr>
    </table>


  • Registered Users Posts: 4,468 ✭✭✭matt-dublin


    <table width="40%">
    <tr colspan="2">
     
    </tr>
    <tr>
    <td width="20%">
     
    </td>
    <td width="80%">
     
    </td>
    </tr>
    </table>


  • Registered Users Posts: 4,468 ✭✭✭matt-dublin


    jynx!


  • Registered Users Posts: 1,757 ✭✭✭Deliverance XXV


    That's it lads thanks very much!


  • Registered Users Posts: 2,472 ✭✭✭Sposs


    You should really look at going with CSS layers rather than Tables.


  • Advertisement
Advertisement