
Switches the menu between relative and absolute positioning.
- When in absolute positioning mode
the menu is placed on the page by specifying horizontal (X coordinate) and
vertical (Y coordinate) offset from the top left corner of the document.
The menu initialization code (new menu(...) statement) is placed in HTML document just above </body>
tag in this case. Select this mode when other elements of the page are also positioned using absolute
coordinates;
- When in relative positioning mode
the menu "sticks" to the element that the menu initialization code is inserted into. For example menu
can be inserted into the cell of the table that is centered on the page and menu will always appear inside
that cell no matter what screen resolution or browser window size is set. This is very simple and reliable
positioning method should be used when pages are formatted using traditional nested tables layout.
|