Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Html Tables- What am I doing wrong?

  • 24-09-2007 02:38PM
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 Posts: 905 ✭✭✭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, Registered Users 2 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, Registered Users 2 Posts: 4,468 ✭✭✭matt-dublin


    jynx!


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


    That's it lads thanks very much!


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


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


  • Advertisement
Advertisement