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

Any web gurus out there?

Options
  • 21-07-1999 2:48pm
    #1
    Closed Accounts Posts: 483 ✭✭


    Need a bit of a hand with tables.
    Thanks.


Comments

  • Registered Users Posts: 4,901 ✭✭✭Vexorg


    Im nno html guru, but shout out the problem, might be able to help




  • Closed Accounts Posts: 200 ✭✭mobius


    Yeah man, out with it...



    The Freaks are here!
    http://drive.to/mobius



  • Closed Accounts Posts: 483 ✭✭Helv


    Basically, I want to divide up the page into 3 parts the banner section and
    below the banner, a nav bar on the left and a main section to the right. I was
    told that you cant create tables beside each other.Also I want to create talbes within the main table on the right.


  • Registered Users Posts: 3,316 ✭✭✭ButcherOfNog


    frames? or divs? tables won't do it afaik, but then i'm no guru


  • Subscribers Posts: 1,911 ✭✭✭Draco


    Erm okay - this is possibly how you do it (but don't take it as gospel - my HTML is a *bit* dodgy)

    First create a table with 2 rows.
    In the first row, you have you banner.
    In the second row put a table with two colums.
    In the left column put your nav bar.
    In the right column put your main section. As long as you keep stuff with in the column tags, you can put whatever you want in here.

    The HTML looks roughly like this (hopefully it will come out right):

    <table border="2">
    <tr>
    <td>banner</td>
    </tr>
    <tr>
    <td><table border="2">
    <tr>
    <td>sidebar</td>
    <td>main section<table border="2">
    <tr>
    <td>a</td>
    <td>table</td>
    </tr>
    <tr>
    <td>in</td>
    <td>main window</td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </table>

    Is that right?

    Guru-in-training Draco


  • Advertisement
  • Closed Accounts Posts: 6,275 ✭✭✭Shinji


    Easier again...

    (Im using normal brackets instead of pointy ones here, cos the boards don't like pointy ones afaik)

    (table width=100%)
    (tr)
    (td colspan=2)
    your_banner_here
    (/td)
    (/tr)

    (tr)
    (td) your_navbar_here (/td)
    (td) main_section_here (/td)
    (/tr)
    (/table)

    Naturally you'll want to fiddle with the attributes, but that ought to give you the basic 3-cell layout.


  • Closed Accounts Posts: 200 ✭✭mobius


    Easiest of all!
    Just copy the "index.htm" off my website and change the page names accordingly.
    smile.gif-|-<

    They only come out at night.
    http://drive.to/mobius




  • Closed Accounts Posts: 483 ✭✭Helv


    Thanks but I worked it out anyway


Advertisement