As with the menu shown on the Milonic front page, how do I achieve a fixed position, regardless of window resizing and screen resolution?
If I set a fixed position, and resize the window, the menu changes position, same applies if I change resolution.
I'm using frames at the moment to achieve this.
Thanks
BigJohnson
Menu Positioning
Do you have a url, and which browsers? As far as I know you would set the position as below:
That coding should place the menu 10 pixels from the top and 55 pixels from the left.
Ruth
Code: Select all
with(milonic=new menuname("Main Menu")){
style=menuStyle;
top=10;
left=55;alwaysvisible=1;
orientation="horizontal";
aI("text=Home;url=etc....;");
Ruth
-
- Advanced
- Posts: 14
- Joined: Sat May 01, 2004 7:55 pm
Not to my knowledge, as to that particular offset, however there is a sample for using screen position and offsets here http://milonic.com/menusample23.php that may help you.
Ruth
Ruth
-
- Advanced
- Posts: 14
- Joined: Sat May 01, 2004 7:55 pm
Hi Craig,
Didi you try:
in your menu definition?
Of course, you'd replace the -50 with the value you want to offset to the left.
Didi you try:
Code: Select all
screenposition="center";
left="offset=-50";
Of course, you'd replace the -50 with the value you want to offset to the left.