Center Align Menu (with mouseovers)

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
iteams
Beginner
Beginner
Posts: 8
Joined: Sun May 19, 2002 8:23 pm
Contact:

Center Align Menu (with mouseovers)

Post by iteams »

Hi ,
I just upgraded the script for 3.4 to 5.43. The site was aligned to the left now we need to align it to the center.

How do I bind the popout menus to the cell the mouseover button is in.

I am not using the main menu, just the individual menus.

http://www.2-way.biz/products.htm

This is an example of the coding I am using with the mouseover.

<td width="156">
<a href="../products.htm"
onMouseOut="MM_swapImgRestore();popdown()" onMouseOver="MM_swapImage('Image13','','../images/mouseover/products.gif',1);popup('products')"><img src="../images/default/products.gif" name="Image13" width="156" height="23" border="0">
</a></td>

Thanks


Sean
Last edited by iteams on Fri Aug 27, 2004 2:54 pm, edited 1 time in total.
User avatar
Andy
Milonic
Milonic
Posts: 3308
Joined: Sun May 19, 2002 8:23 pm
Location: Menu Developer
Contact:

Post by Andy »

Hi,

I couldn't see the menu on your website.

Hhave you removed it, or is it someplace else?

Looked at http://www.2-way.biz/

Cheers
Andy
iteams
Beginner
Beginner
Posts: 8
Joined: Sun May 19, 2002 8:23 pm
Contact:

Sub Level Pages

Post by iteams »

Hi Andy,

It's not on the home page but on all the content pages.

Sorry

http://www.2-way.biz/products.htm

Thanks



Sean
User avatar
Andy
Milonic
Milonic
Posts: 3308
Joined: Sun May 19, 2002 8:23 pm
Location: Menu Developer
Contact:

Post by Andy »

Hi,

Try the following:

Code: Select all

<td width="156"> 
<a href="../products.htm" 
onMouseOut="MM_swapImgRestore();popdown()" onMouseOver="MM_swapImage('Image13','','../images/mouseover/products.gif',1);popup('products',"image13")"><img src="../images/default/products.gif" name="Image13" id="Image13" width="156" height="23" border="0"> 
</a></td> 
Note the addition of id="Image13" to the image tag and popup("products","Image13")

Hope this helps
Andy
Post Reply