There seems to be a 'glitch' with my transparent drop down menus when I use Firefox.
Return to Recent Questions
Q:
There seems to be a "glitch" when I use Firefox.
I have rebuilt the page twice but I always end up with the
menu floating to the left, instead of under the main menu (the
second or third mouseover will correct the issue). Also, sometimes I
have to mouseover twice before the submenu comes up (in I.E.).
I have validated...however I wondered if there could be a
conflict in the javascripting (yours and mine). Any suggestions?
A:
The reason is in your <!DOCTYPE>.
Try to specify units in "px".
var menuWidth="780px";
var menuHeight="27px";
var smWidth="200px";
var smHeight="200px";
It's necessary to specify exact value for Mozilla browsers. It helps
to position menus correctly.
You can also try to set the following parameter:
var dm_writeAll=1;
Return to Recent Questions
|