Hi guys,
Im new to this forum and seeking for help.
Would appreciate if anyone can guide me to implement Superfish into Interspire website.
I have downloaded the superfish files and put javascript and css files according to examples.
In my htmlhead.html
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<link href="css/superfish.css" media="screen" type="text/css" rel="stylesheet" />
<link href="css/superfish-vertical.css" media="screen" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="js/superfish.js"></script>
<script type="text/javascript" src="js/hoverIntent.js"></script>
<script type="text/javascript" src="js/jquery-1.2.6.min.js"></script>
<script type="text/javascript">
// initialise plugins
$(function(){
$('ul.sf-menu').superfish();
delay: 1200
});
</script>
</head>
<body>
<div class="Block CategoryList Moveable Panel" id="SideCategoryList">
<h2>%%LNG_ProductsByCategory%%</h2>
<div class="BlockContent">
<!--%%SNIPPET_SideCategoryList%%-->
<ul class="sf-menu sf-vertical sf-js-enabled sf-shadow">
<li class="">
<a class="" href="http://www.cubbees.com/v2/categories/Bar-&-Wine/">Bar & Wine
<span class="sf-sub-indicator"></span>
</a>
<ul style="">
<li><a href="http://domain/categories/Bar-&-Wine/Bar-Chair/">Bar Chair</a></li>
<li><a href="http://domain/categories/Bar-&-Wine/Holder/">Holder</a></li>
<li><a href="http://domain/categories/Bar-&-Wine/Serving-Trays/">Serving Trays</a></li>
<li><a href="http://domain/categories/Bar-&-Wine/Serving-Trolley/">Serving Trolley</a></li>
<li><a href="http://domain/categories/Bar-&-Wine/Wine-Accessories/">Wine Accessories</a></li>
<li><a href="http://domain/categories/Bar-&-Wine/Wine-Glasses/">Wine Glasses</a></li>
</ul>
</li>
</div>
</div>
</body>
The vertical menu I have already done, but the animation fading out menu cant work!
Any help would be appreciated!
Joseph