This is
the first
column.

This is a three-column table with the menu anchored in the center table cell. The menu should remain anchored in the cell as the page is resized (within the limitations of the specified table size). Here are the steps for creating this type of menu:

1) Create a floating menu by checking Float in Global Settings - Menu Type. You can set the x and y coordinates to 0.

2) Select the first menu item, click Condition in Menu Item Settings, and input the following code in the Suffix box:

function stgtxy()
{
var x=0,y=0;
for(var o=_STNS.fdmGetEleById("stTABLE");o;o=o.offsetParent)
{
x+=parseInt(o.offsetLeft);
y+=parseInt(o.offsetTop);
}
return [x,y];
}
_STNS._aStMenus[_STNS._aStMenus.length-1].iX="stgtxy()[0]";
_STNS._aStMenus[_STNS._aStMenus.length-1].iY="stgtxy()[1]+stgct()";

3) Add the menu to a page containing a table.

4) Set the ID of the table cell <td> that the floating menu aligns to as stTABLE, as in the following example:

<td width="135" id="stTABLE"></td>