Hello,
It looks like you've decided to vertically align the content on the page to the middle. To makethe main menu's position adjust, change the top of your Main Menu definition from this:
Code: Select all
with(milonic=new menuname("Main Menu")){
style=background;
screenposition="center";
top=165;
left="offset=-290";
.
.
.
}
To this
Code: Select all
with(milonic=new menuname("Main Menu")){
style=background;
screenposition="center;middle";
top="offset=60";
left="offset=-290";
.
.
.
}
screenposition="center;middle" will make the menu want to be in the center (horizontally) and middle (vertically) of the page. The
top and
left offsets will then move the menu from that position. Adjust the offset values as needed.
Hope that helps,
Kevin