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
Center Align Menu (with mouseovers)
Center Align Menu (with mouseovers)
Last edited by iteams on Fri Aug 27, 2004 2:54 pm, edited 1 time in total.
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
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
Sub Level Pages
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
It's not on the home page but on all the content pages.
Sorry
http://www.2-way.biz/products.htm
Thanks
Sean
Hi,
Try the following:
Note the addition of id="Image13" to the image tag and popup("products","Image13")
Hope this helps
Andy
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>
Hope this helps
Andy