
04-12-2011, 10:01 AM
|
 |
|
|
Join Date: Apr 2009
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Da-Vinci
Works fine for me but the way I found it best to implement this was to do the following.
In your Header Template add this to the very top.
HTML Code:
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bar.js"></script>
<!--[if lt IE 7]>
<style type="text/css">
div, img { behavior: url(iepngfix.htc) }
</style>
<![endif]-->
<link href="css/style.css" rel="stylesheet" type="text/css" />
Then in your Navbar Template add this.
HTML Code:
<div class="dock" id="dock">
<div class="dock-container">
<a class="dock-item" href="your link here"><img src="images/home.png" alt="home" /><span>home</span></a>
<a class="dock-item" href="your link here"><img src="images/email.png" alt="contact us" /><span>contact us</span></a>
<a class="dock-item" href="your link here"><img src="images/portfolio.png" alt="usercp" /><span>usercp</span></a>
<a class="dock-item" href="your link here"><img src="images/fb.png" alt="facebook" /><span>follow as on facebook</span></a>
<a class="dock-item" href="your link here"><img src="images/tw.png" alt="twitter" /><span>follow as on twitter</span></a>
<a class="dock-item" href="your link here"><img src="images/history.png" alt="time" /><span>time</span></a>
<a class="dock-item" href="your link here"><img src="images/calendar.png" alt="calendar" /><span>calendar</span></a>
<a class="dock-item" href="your link here"><img src="images/rss.png" alt="rss" /><span>RSS</span></a>
</div>
</div>
<script type="text/javascript">
$(document).ready(
function()
{
$('#dock').Fisheye(
{
maxWidth: 50,
items: 'a',
itemsText: 'span',
container: '.dock-container',
itemWidth: 40,
proximity: 90,
halign : 'center'
}
)
}
);
</script>
I've currently got this as tagged, although it works 100% on my forum, it's not doing exactly what I want it to as I want to integrate it with this custom template edit, I've made to my forum.
The files should be uploaded to your forum root, IE: the location on your FTP where your forum resides. If you can see a folder called Admin CP, then this is where you need to upload the folders that are attached to this mod.
Rated as 5 and Nominated for MOTM.
|
my brother i will make it for you just give some time ^^
|