snak detek+0r wrote: > When I click on the links, rather than going to the specified url, > the whole layout changes -- gets skinny. at this point, the links > work.
> http://minivanswebsite.com/testsite/index.html Tables work a bit different on the Gecko-side of the fence, so the whole family seems to be a bit "lost". You can always stiffen up the table by adding... table.main {width: 890px;} * html table.main {width: 910px;} ...and maybe also add... table.main {table-layout: fixed;} ...to replicate IE/win's table-handling in Gecko. It'll behave perfectly stable then. BTW: I think you should write proper HTML comments, if only to avoid those cascading error-messages... <http://validator.w3.org/check?uri=http%3A%2F%2Fminivanswebsite.com%2Ftestsite%2Findex.html&charset=%28detect+automatically%29&doctype=Inline&ss=1&group=0> regards Georg -- http://www.gunlaug.no ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
