Milonic,
I'm getting these unecessary horizontoal scroll bars in the IE browser (only) when I include the javascript files and referencing a parent menu within a table.
If I remove the Menustyle property, the menu is not created, but the horizontal scroll bar goes away.
any ideas?
http://clients2.serverside.net/image-technology/
Here is my inline table reference:
with(milonic=new menuname("MainNavigation")){
style=menuStyle;
alwaysvisible=1;
orientation="horizontal";
position="relative";
menuwidth="520px";
aI("title=Home;status=Home;image=<%=FileSource%>images/btn_home_<%If action = "" OR action = "home" Then%>over<%Else%>up<%End If%>.gif;overimage=<%=FileSource%>images/btn_home_over.gif;url=<%=linkRoot%>;");
aI("title=Services;status=Services;image=<%=FileSource%>images/btn_services_up.gif;overimage=<%=FileSource%>images/btn_services_over.gif;showmenu=SubNavigation;");
aI("title=Products;status=Products;image=<%=FileSource%>images/btn_products_up.gif;overimage=<%=FileSource%>images/btn_products_over.gif;showmenu=SubNavigation;");
aI("title=Industry Solutions;status=Industry Solutions;image=<%=FileSource%>images/btn_industrysolutions_up.gif;overimage=<%=FileSource%>images/btn_industrysolutions_over.gif;showmenu=SubNavigation;");
aI("title=Partners;status=Partners;image=<%=FileSource%>images/btn_partners_up.gif;overimage=<%=FileSource%>images/btn_partners_over.gif;url=<%=linkRoot%>?action=partners;");
aI("title=Company;status=Company;image=<%=FileSource%>images/btn_company_up.gif;overimage=<%=FileSource%>images/btn_company_over.gif;showmenu=SubNavigation;");
aI("title=Learning Center;status=Learning Center;image=<%=FileSource%>images/btn_learningcenter_up.gif;overimage=<%=FileSource%>images/btn_learningcenter_over.gif;showmenu=SubNavigation;");
}
drawMenus();
Thanks
unnecessary horizontal scroll bars appearing [solved]
- nwilcox
- Mega Advanced
- Posts: 269
- Joined: Sat Aug 20, 2005 6:14 am
- Location: Indianapolis, IN
- Contact:
unnecessary horizontal scroll bars appearing [solved]
Last edited by nwilcox on Fri Aug 21, 2009 8:12 pm, edited 1 time in total.
Hi,
I put in align="right" in the td where you have the menu, I think that's what you were saying, and I see
the problem.
If you must have the align="right" in that td you can eliminate the horizontal bar at the bottom
by placing the menu inside a table inside that cell. You'd use your full menu of course.
I cut it down so it wouldn't expand this page at my resolution
Ruth
I put in align="right" in the td where you have the menu, I think that's what you were saying, and I see
the problem.
If you must have the align="right" in that td you can eliminate the horizontal bar at the bottom
by placing the menu inside a table inside that cell. You'd use your full menu of course.
I cut it down so it wouldn't expand this page at my resolution

Code: Select all
<TD align="right"><!--Begin Milonic Menu-->
<table cellpadding="0" cellspacing="0" border="0">
<tr><td><SCRIPT type=text/javascript>
with(milonic=new menuname("MainNavigation")){
style=menuStyle;
alwaysvisible=1;
orientation="horizontal";
position="relative";
aI(" all your aI stuff here
}
drawMenus();
</SCRIPT></td>
</tr>
</table>
<!--End Milonic Menu--></TD>
- nwilcox
- Mega Advanced
- Posts: 269
- Joined: Sat Aug 20, 2005 6:14 am
- Location: Indianapolis, IN
- Contact:
Hi Ruth,
why do I have to place it within another table?
I ended up just adding a spacer image in a new cell and making the menu cell just big enough for the menu and that solved the issue.
I still don't see why I have to do what you are indicating. Is there a reason for this anomaly.
Also the right alingment works awesome. I got that figured out last night on my furthest right menu.
Nice work guys!
why do I have to place it within another table?
I ended up just adding a spacer image in a new cell and making the menu cell just big enough for the menu and that solved the issue.
I still don't see why I have to do what you are indicating. Is there a reason for this anomaly.
Also the right alingment works awesome. I got that figured out last night on my furthest right menu.
Nice work guys!
