Other than using a graphic as the button how do you stop the menu from word wrapping when someones using a strange size screen or has IE sized strangly? I can dupicate this if my IE window isn't full screen or i change my screen size to 800x600? Thanks in advance and have a great day.
Working Menu:
Bad Menu:
word wrap in menu
Re: word wrap in menu
Hi,
There is a style and an item property called nowrap. In the style for that menu use nowrap="on";
You can also do it the old fashioned way using non breaking line space code instead of putting a space between word and symbols
So that pick up and go thing would be
But, I think the nowrap would be easier 
Ruth
There is a style and an item property called nowrap. In the style for that menu use nowrap="on";
You can also do it the old fashioned way using non breaking line space code instead of putting a space between word and symbols
Code: Select all
Code: Select all
text=PickUp -n- Go;

Ruth
Re: word wrap in menu
I tried the nbsp first since i found that by searching the forum you can see that below:
I just tried the nowrap do i have it in the wrong place?
I just tried the nowrap do i have it in the wrong place?
Code: Select all
with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
top=165;
left=160;
itemheight=21;
itemwidth=110;
orientation="horizontal";
style=menuStyle;
menualign="center";
position="relative";
menu="nowrap";
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;text=Home;url=http://century-banquetcenter.com;");
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;text=Calendar;url=http://www.american-polishcenturyclub.com/calendar/default.asp;");
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;showmenu=Weddings;text=Weddings;");
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;showmenu=Funerals;text=Funerals;");
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;showmenu=Showers;text=Showers;");
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;showmenu=Corporate;text=Social;");
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;showmenu=AboutUs;text=About Us;");
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;showmenu=PickUpNGo;text=PickUp -n- Go;");
aI("align=center;bgimage=/menuimages/itemblue.gif;overbgimage=/menuimages/itemyellow_on.gif;showmenu=ContactUs;text=Contact Us;");
}
Re: word wrap in menu
Hi,
Yes, you have it in the wrong place. The menu has properties that belong to different areas. Below my name are links to 3 areas, style, menu and item properties. So, if the property is a menu property, it goes in the menu, like top, left, etc. Style properties go into the style and will apply to all menus and their items that use that style, item properties are placed directly in the aI string for the item. If you cross reference the lists you'll see that some properties can go in all areas, some in one and some in two.
Nowrap is a style or item property, not a menu property.
Ruth
Yes, you have it in the wrong place. The menu has properties that belong to different areas. Below my name are links to 3 areas, style, menu and item properties. So, if the property is a menu property, it goes in the menu, like top, left, etc. Style properties go into the style and will apply to all menus and their items that use that style, item properties are placed directly in the aI string for the item. If you cross reference the lists you'll see that some properties can go in all areas, some in one and some in two.
Nowrap is a style or item property, not a menu property.
Ruth