I can not figure out how to fix the tabbed menu from going off the page in Mozilla
Return to Recent Questions
Q:
I can not figure out how to fix the menu from going off the page in
Mozilla by using html code. I don't know where to put the code. I would like
it to be flush right.
A:
Try to set exact width for the menu width and menu height, try to specify units
in "px":
var menuWidth="500px";
It's necessary to specify exact value for Mozilla browsers. It helps
to position menus correctly.
var menuHeight="20px";
You should also check your padding parameter, you should write it so:
var itemPadding="1px 1px 1px 12px";
Return to Recent Questions
|