Quoting Bill Moseley <[EMAIL PROTECTED]>: > I'd rather stick with the table if not using one is going to break all our > favorite browsers. Like we said, we can't expect the site to work > perfectly in buggy browsers. It's not much of a loss to not see the right > side of that bar.
you can fix it by using one single large table like this: <table> <tr> <td>usual stuff for two topbars</td> <td>usual stuff for two topbars</td> </tr> <tr> <td>usual stuff for two topbars</td> </tr> ... <tr> <td colspan="2"> here comes the actual results embrqaced in <dl> tags </td> </tr> ... <tr> <td>usual stuff for two topbars</td> <td>usual stuff for two topbars</td> </tr> <tr> <td>usual stuff for two topbars</td> <td>usual stuff for two topbars</td> </tr> ... </table> this will work in any browser. im off for the weekend ./allan > Maybe IE will get better when more people quit coding to its bugs... > > > -- > Bill Moseley > mailto:[EMAIL PROTECTED] > > -- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
