I am using css to style a menu, which is built along these lines:
<tr id="theMenu">
<td width="120"><a href="something.html">something</a></td>
<td .... etc.
If I want part of the menu on one area of the page and the other part somewhere else, I can just set up another table and again use id="theMenu" on the TR, as above. At least, this works in IE. NS4 gets the first piece of the menu right, but ignores the css styling on the second piece. I could simply set up a different class for the second menu piece, but is there any other way to get it to work in NS too?
G
<tr id="theMenu">
<td width="120"><a href="something.html">something</a></td>
<td .... etc.
If I want part of the menu on one area of the page and the other part somewhere else, I can just set up another table and again use id="theMenu" on the TR, as above. At least, this works in IE. NS4 gets the first piece of the menu right, but ignores the css styling on the second piece. I could simply set up a different class for the second menu piece, but is there any other way to get it to work in NS too?
G
Comment