Fixing the empty cell in Netscape:
== default.asp ==
line # 285 & 286 are this:
call CategoryMemberOptions()
end if
Add this inbetween them:
else
Response.Write" & nbsp;" & vbNewline
That'll solve the problem with the categories.
Now for the forums 
lines 363, 364 and 365 are these:
elseif mlev > 0 then
call ForumMemberOptions
end if
Add this between 364 and 365:
else
Response.Write" & nbsp;" & vbNewline
There's a space between & and nbsp; in the codes I posted here because the forums convert them to a real space instead of showing the code. That's a bug in itself, but pay attention when you use this that you remove the space.

http://www.frutzle.com
Snitz Exchange | Do's and Dont's