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

A little help with tables

Options
  • 07-12-2008 4:11pm
    #1
    Closed Accounts Posts: 21


    Hi Guys

    Trying to sort out two address on a website, I want them to appear side by side, as below

    Company XYZ Ltd Company ABCS Ltd
    15 Dublin Rd 25 Galaway Rd
    Cork Dublin
    Ireland Ireland

    Tel 021 12345 Tel 01 23457
    Fax 021 123456 Fax 01 2345678

    I can get them to appear one on top of the other but how do i get them to appear as above.

    Thanks i advanece


Comments

  • Registered Users Posts: 806 ✭✭✭Niall09


    You must have it sructured wrong. Anyway, this should work:

    [HTML]<table width="400" border="0">
    <tr>
    <td>
    Company XYZ Ltd
    </td>
    <td>
    Company ABCS Ltd
    </td>
    </tr>
    <tr>
    <td>
    15 Dublin Rd
    </td>
    <td>
    25 Galaway Rd
    </td>
    </tr>
    <tr>
    <td>
    Cork
    </td>
    <td>
    Dublin
    </td>
    </tr>
    <tr>
    <td>
    Ireland
    </td>
    <td>
    Ireland
    </td>
    </tr>
    <tr>
    <td>
     
    </td>
    <td>
     
    </td>
    </tr>
    <tr>
    <td>
    Tel 021 12345
    </td>
    <td>
    Tel 01 23457
    </td>
    </tr>
    <tr>
    <td>
    Fax 021 123456
    </td>
    <td>
    Fax 01 2345678
    </td>
    </tr>
    </table>[/HTML]


Advertisement