|
Why my down navigation menu does not float and why I cannot centre the down navigation menu?
Return to Recent Questions
Q:
I think I am almost create my down navigation menu.
I would like to know a couple of things.
Why the down navigation menu does not float?
Why I cannot centre the down navigation menu?
A:
When you use floatable down navigation menu you can't use relative down navigation menu position.
So, if you use relative position for the down navigation menu and to center the down navigation menu you use <p> or <div> with the center alignment your menu won't float.
To center your floatable down navigation menu you should set absolute coordinates.
var absolutePos = 1;
var PosX = "50%";
var PosY = "40";
Return to Recent Questions
Related:
|