I might be wrong, but i believe this is a CSS problem, because FF has some pixel problem that causes pages to look different in FF than in IE. To fix this problem you have to define the width and height or whatever properties in CSS:
Code:
#menutable {
width:250px;
height:300px;
width:275px !important;
height:325px !important;
}
Your CSS Code would look something similar to that, all that does is simply define the width and height of the table. As you can see width/height is defined twice, this deals with FF's pixel problem. The FF browser will use the height/width defined with !important there, whereas IE will use the height/width defined before the !important. I believe the difference in pixels between IE and FF is around 25px. (See above code)
So, that may be the answer to your problem, give it a shot and let me know.
P.S. - I dont actually have FF, i only have IE, so this problem may not be what i said above, however i do know that this problem with FF and pixels does exist, and to fix it you use the same method as above.
Hope that helps.

Bookmarks