|
My down menus in css is fixed like a rock. It doesn't float.
Return to Recent Questions
Q:
The reason why I bought this down menus in css was its ability to float. I have
inserted the following data under Floatable Menu but my down menus in css is fixed like a
rock.
Var floatable=1;
Var floatiterations=6
Var floatableX=0
Var floatableY=1;
I hope you can help me once again
A:
Notice, when you use floatable menu you can't use relative position for the down menus in css.
So, if you use
var absolutePos = 0;
and to center the down menus in css you use <p> or <div> with the center alignment your down menus in css won't float.
To center your floatable menu you should use absolute coordinates.
Return to Recent Questions
|