urls not working on images - help

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
dbonneville
Advanced
Advanced
Posts: 22
Joined: Wed May 05, 2004 8:33 pm

urls not working on images - help

Post by dbonneville »

I have a top level graphic based menu with text drop downs. The text drop downs and their links work fine, but the links on the images don't work. They don't even show a the mouse turning to a hand. What is wrong with the configuration here?

The last two (see below) don't have menus, and these don't work either.

The main menu is centered on the page using the script method:

Code: Select all

			<script type="text/javascript">
				with(milonic=new menuname("Main Menu")){
				style=menuStyle;
				top=155;
				left=200;
				alwaysvisible=1;
				orientation="horizontal";
				position="relative";
				
				aI("showmenu=Products;image=images/nav-products.gif;overimage=images/nav-products.gif");
				aI("showmenu=Quality Systems;image=images/nav-quality.gif;overimage=images/nav-quality.gif;url=index.html;");
				aI("showmenu=Locations;image=images/nav-locations.gif;overimage=images/nav-locations.gif;url=index.html;");
				aI("showmenu=About Us;image=images/nav-about.gif;overimage=images/nav-about.gif;");
				aI("image=images/nav-contact.gif;overimage=images/nav-contact.gif;url=index.html;");
				aI("image=images/nav-sales-rep.gif;overimage=images/nav-sales-rep.gif;url=index.html;");
				}
				
				drawMenus();
				
			</script>	
Thanks,

Doug
dbonneville
Advanced
Advanced
Posts: 22
Joined: Wed May 05, 2004 8:33 pm

Post by dbonneville »

Here is a link to the dev site and the current menu that is not working:

http://65.198.78.44/sicon/_index.html
dbonneville
Advanced
Advanced
Posts: 22
Joined: Wed May 05, 2004 8:33 pm

Post by dbonneville »

I removed the "position: relative" and it works fine now.
Post Reply