CSS Dock Menu

Gravedigger

New Member
I download CSS Dock menu from:
Code:
http://www.ndesign-studio.com/blog/design/css-dock-menu/

but i dont know which code to put in my header's forum.
Please for help.
 
headinclude template:
Code:
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/interface.js"></script>

<link href="style.css" rel="stylesheet" type="text/css" />

<!--[if lt IE 7]>
<style type="text/css">
.dock img { behavior: url(iepngfix.htc) }
</style>
<![endif]–>


Hmmm....top or bottom of header template I suppose
Code:
<script type="text/javascript">
$(document).ready(
function()
{
$(’#dock2′).Fisheye(
{
maxWidth: 60,
items: ‘a’,
itemsText: ’span’,
container: ‘.dock-container2′,
itemWidth: 40,
proximity: 80,
alignment : ‘left’,
valign: ‘bottom’,
halign : ‘center’
}
)
}
);
</script>

You might want to check this post:
http://www.vbteam.info/trash/1331-ajax-fisheye-menu-version-0-95b.html
 
Back
Top