Netscape compatability

They have: 3 posts

Joined: Jun 2000

I use Dreameweaver 3 to aid in site production, and I have found that when my site is previewed in netscape, the advanced layer design (tables inside of layers) do not show up, or the text that is inside of the tables gets slung all over the page. Is there any type of fix I can do to this?? Any help would be great thanx!

They have: 231 posts

Joined: Feb 2000

Post a URL for the page so we can take a look at it. From memory some versions of Netscape have problems with nested tables.

Suzanne's picture

She has: 5,507 posts

Joined: Feb 2000

Tables and layers in Netscape will always give you a headache. Unfortunately, the most popular browsers right now are the most divergent in support. IE 4 and 5 are very stable (but for bad reasons in some cases) and NN 4 is not DOM compliant, but NN6 is but it's terrible!

That said, I am finding a lot of designers are using advanced "complicated" table layouts because they don't know how to do it simply. Tons of nested tables not because they have to but because they don't know any better.

The workarounds can be complex (using JavaScript to add borders to tables (using nesting or adding rows/columns) for NN 4 for instance) but right now your choice is weird workarounds or living with different looks.

Soapbox speech aside, why not take the code and upload it to a public server so people can help you? You aren't going to get a lot of help if people can't see what you are talking about. Even a snip of code can help.

Suzanne

------------------
Zero Cattle
Suzanne
Tables DeMystified

They have: 122 posts

Joined: Jun 1999

netscape doesn't allow layers within a table. One way to get aroudn this is to surround the layers with ilayers.

for example, you have:

<table>
<tr>
<td>
<layers>blahblah</layer>
</td>
</tr>
</table>

well, you would change that to:

<table>
<tr>
<td>
<ilayer>
<layers>blahblah</layer>
</ilayer>
</td>
</tr>
</table>

Also, dreamweaver has an option to convert tables to layers and layers to tables. I don't have dreamweaver, but I have used it, and it shouldn't be too hard to find.

They have: 3 posts

Joined: Jun 2000

Well, I got it to work, somehow... I went back through all 113 pages of this website and messed with the layers a little bit and changed the background of the layers to white, then I overlapped them with other layers, all being said, it looks the same in IE and Netscape now. I just wish there would have been an easier way than 5 hours of extra work...

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.