Hi all,

I added phatfusion image menu to my oscommerce site but don't working. say why? I dont know.
I did everything right, but not.

I transfered imageMenu.js and imageMenu.css to public_html,
I transfered mootols.js to /_common/js/

Then, I added those to index.php;

<link href="imageMenu.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../_common/js/mootools.js"></script>
<script type="text/javascript" src="imageMenu.js"></script>

Finally I added that code to header.php;

<div id="imageMenu">
 
            <ul>
                <li class="landscapes"><a href="http://www.aaronbirchphotography.com">Landscapes</a></li>
                <li class="people"><a href="http://www.aaronbirchphotography.com">People</a></li>
                <li class="nature"><a href="http://www.aaronbirchphotography.com">Nature</a></li>
                <li class="urban"><a href="http://www.aaronbirchphotography.com">Urban</a></li>
                <li class="abstract"><a href="http://www.aaronbirchphotography.com">Abstract</a></li>
            </ul>
 
            </div>
 
            <script type="text/javascript">
 
            window.addEvent('domready', function(){
                var myMenu = new ImageMenu($$('#imageMenu a'),{openWidth:310, border:2, onOpen:function(e,i){alert(e);}});
            });
              </script>

but don't working. this site: http://www.matbaaoffice.com

What can I do?

Problem is solved. I removed to ">" from the last line of imageMenu.js and now is working!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.