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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

tables in FrontPage 2000

  • 23-10-2002 10:22pm
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 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