Quote:
|
Originally Posted by Shlomi32
In addition I liked the advice that was given to use a percentage width for the middle section but when I tried to use it, it didn't work. How should I write it?
|
I haven't had a chance to take a closer look at the source code, which I can do later, but for a table cell you can add the attribute
width="XX%"
i.e. <td width="XX%" anotherattribute="value"> etc. (fill in a number)
It's best to experiment with different percentages.
With CSS, use
td.classname { width: XX%; }
but it looks like you're using HTML attributes for the table cells.