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

tables in FrontPage 2000

Options
  • 23-10-2002 11:22pm
    #1
    Registered Users Posts: 2,102 ✭✭✭


    Can anyone help me with this?

    I create a table 2 Col. x 2 Row
    I split the left side cell into say 5 cells for hyperlinks,
    but when I type text or insert a pic into the cell to the right the left side cells begin to get bigger and bigger.

    Sorry I can't explain it any better, basically I want to split the page into 2 Col. and type, insert, edit one without affecting the other.

    Thanks for any help.


Comments

  • Registered Users Posts: 1,967 ✭✭✭Dun


    Perhaps change the table to use percentage instead of pixel for widths. For example:

    [PHP]
    <table border="1" width="100%">
    <tr>
    <td width="30%"></td>
    <td width="70%"></td>
    </tr>
    <tr>
    <td width="30%"></td>
    <td width="70%"></td>
    </tr>
    </table>[/PHP]

    The table is stretched to 100% the page width, the left column being 30% of that, and the right 70%.

    Change to suit.

    BTW, the above code is not PHP (well maybe it is part of it - me no know), just the colour coding is handy :D


Advertisement