My javascript menu html is fixed like a rock. It does not float.
Return to Recent Questions
Q:
The reason why I bought this javascript menu html was its ability to float. I have
inserted the following data under Floatable Menu but my menu 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 menu position.
So, if you use
var absolutePos = 0;
and to center the menu you use <p> or <div> with the center alignment your menu won't float.
To center your floatable menu you should set absolute coordinates.
Return to Recent Questions
|