menu expansion on certain PCs

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
msoden
Advanced
Advanced
Posts: 23
Joined: Wed Aug 18, 2004 4:20 pm
Location: Virginia
Contact:

menu expansion on certain PCs

Post by msoden »

I am continuing to have an issue with certain PCs concering the menu text expanding out. This is not an issue of View>text>size. Most PCs are able to render the menu fine; however some want to expand the text out. This is not an easy thing to duplicate. Current I have two machines with clients where this is occuring. Here are links to my examples and the milonic menu code for the Fiz site. Any assitance that you can offer will be greatly appreciated.

Examples images only:
http://www.msdesignsllc.com/milonic/index.htm
http://www.msdesignsllc.com/milonic/index2.htm

Test sites:
http://temp2.aquesthosting.com/aristala ... istory.htm
http://www.msdesignsllc.com/fiz/index.htm

Menu_data code for Fiz site

Code: Select all




_menuCloseDelay=500           // The time delay for menus to remain visible on mouse out
_menuOpenDelay=150            // The time delay before menus open on mouse over
_followSpeed=5                // Follow scrolling speed
_followRate=40                // Follow scrolling Rate
_subOffsetTop=10              // Sub menu top offset
_subOffsetLeft=-10            // Sub menu left offset
_scrollAmount=3               // Only needed for Netscape 4.x
_scrollDelay=20               // Only needed for Netcsape 4.x



with(menuStyle=new mm_style()){
onbgcolor="#FFFFFF";
oncolor="#3679EA";
offbgcolor="#FFFFFF";
offcolor="#333333";
bordercolor="#333333";
borderstyle="solid";
borderwidth=0;
separatorcolor="#FFFFFF";
separatorsize="50";
padding=0;
fontsize="10pt";
fontfamily="Verdana, Arial, Helvetica, sans-serif";
pagecolor="#666666";
pagebgcolor="#A2AEB3";
headercolor="#FFFFFF";
headerbgcolor="#ffffff";
subimagepadding="2";
overfilter="Fade(duration=0.2);Alpha(opacity=100)";
outfilter="randomdissolve(duration=0.3)";
}

with(menuStyle1=new mm_style()){
onbgcolor="#FFFFFF";
oncolor="#3679EA";
offbgcolor="#FFFFFF";
offcolor="#333333";
bordercolor="#1B3245";
borderstyle="solid";
borderwidth=0;
separatorcolor="#0058EE";
separatorsize="1";
padding=4;
fontsize="10pt";
fontfamily="Verdana, Tahoma, Arial";
pagecolor="black";
pagebgcolor="#FFFFFF";
headercolor="#FFFFFF";
headerbgcolor="#ffffff";
subimage="images/arrow1.gif";
subimagepadding="2";
overfilter="Fade(duration=0.2);Alpha(opacity=100);Shadow(color='#666666', Direction=125, Strength=3)";
outfilter="randomdissolve(duration=0.3)";
}


with(milonic=new menuname("Main Menu")){
style=menuStyle;
top=193;
left=50;
alwaysvisible=1;
orientation="horizontal";
aI("text=mission;url=#.htm;showmenu=contact;status=The Fitness Liasion Project - mission;");
aI("text=solutions;url=#.htm;showmenu=solutions;status=The Fitness Liasion Project - solutions;");
aI("text=motivation;url=#.htm;showmenu=motivations;status=The Fitness Liasion Project - motivations;");
aI("text=cutting edge;url=#.htm;showmenu=cutting;status=The Fitness Liasion Project - cutting edge;");
aI("text=news & reviews;url=#.htm;showmenu=news;status=The Fitness Liasion Project - news & reviews;");
aI("text=network;url=#.htm;showmenu=network;status=The Fitness Liasion Project - network;");
}

with(milonic=new menuname("contact")){
style=menuStyle1;
overflow="scroll";
aI("text=about;url=#.htm;");
aI("text=contact;url=#.htm;");
aI("text=register;url=#.htm;");
aI("text=liasions Partners;url=#.htm;");
aI("text=privacy;url=#.htm;");
}

with(milonic=new menuname("solutions")){
style=menuStyle1;
overflow="scroll";
aI("text=setting goals;url=#.htm;");
aI("text=pro assist;url=#.htm;");
aI("text=medical;url=#.htm;");
aI("text=nutrition diet facts;url=#.htm;");
aI("text=equipment;url=#.htm;");
}

with(milonic=new menuname("motivations")){
style=menuStyle1;
overflow="scroll";
aI("text=inspiration;url=#.htm;");
aI("text=planning;url=#.htm;");
aI("text=network;url=#.htm;");
aI("text=coaches training;url=#.htm;");
aI("text=testimonials;url=#.htm;");
}

with(milonic=new menuname("cutting")){
style=menuStyle1;
aI("text=people;url=#.htm;");
aI("text=trends;url=#.htm;");
aI("text=facilities;url=#.htm;");
aI("text=research technology;url=#.htm;");
aI("text=more;url=#.htm;");
}

with(milonic=new menuname("news")){
style=menuStyle1;
openstyle="up"; 
aI("text=heath & fitness news;url=#.htm;");
aI("text=child fitness;url=#.htm;");
aI("text=seniors;url=#.htm;");
aI("text=newsletters;url=#.htm;");
aI("text=reviews;url=#.htm;");
}

with(milonic=new menuname("network")){
style=menuStyle1;
openstyle="up"; 
aI("text=events calendar;url=#.htm;");
aI("text=seminars;url=#.htm;");
aI("text=tell us;url=#.htm;");
aI("text=all in;url=#.htm;");
aI("text=register;url=#.htm;");
}

drawMenus();

MS
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

Try the newest version of the menu, making sure you keep this one in case there are any other anomalies with your site and the new verions. Also, what OS and browsers are causing this problem. It's hard to test if we don't know which those are.

As a test, try removing your style sheet and see if the problem still occurs. It's the first thing I do when trying to narrow what is causing a problem.

Ruth
msoden
Advanced
Advanced
Posts: 23
Joined: Wed Aug 18, 2004 4:20 pm
Location: Virginia
Contact:

Post by msoden »

This is the weird thing. Both of the PCs where this is occuring are using XP-Pro and IE 6.
Post Reply