Forum Moderators: open
[herne.concordia.ca...]
when u make the window small, the menu bar at the top just gets cut off, instead of having a horizontal bar at the bottom that allows me to view the rest of it. how do i fix that? (actually, there is a horizontal bar at the bottom, but the menu still gets cut off!) :(
ps: if it makes any diff, im using SSI to show that menu bar.
Netscape chokes badly on the page right now, but fixing these HTML problems will probably fix most of that. The resizing problem will be much easier to address after the code validates.
I'd still encourage you to fix those table tags and quotes, by the way. After you do, you may find that Netscape 4 works just a LOT better (it especially hates table tag errors).
This is the kind of pattern in your code I'm looking at (first occurance in line 156):
<tr>
<td onMouseOver="this.bgColor = '#FF9900'"onMouseOut="this.bgColor = '#000000'">
<div style="font-size: 9pt; font-family: verdana"><font color="#FFFFFF">Research</font></div>
</tr>
Notice that the <td> never gets closed before the </tr>.
Also, there are several lines of code like this (also on line 156):
<td onMouseOver="this.bgColor = '#FF9900'"onMouseOut="this.bgColor = '#000000'">
it needs a space after closing the first set of double quotes:
<td onMouseOver="this.bgColor = '#FF9900' "onMouseOut="this.bgColor = '#000000'">