say you want to add a forum button like i did...find
Code:
<!-- Inscription -->
in the header template...
copy paste and change the stuff you need to change such as...
Code:
<!-- Forum -->
<td width="93">
<table width="93" border="0" cellpadding="0" cellspacing="0">
<tr>
<td style="background:#FFFFFF url($stylevar[imgdir_misc]/bouton_forum.gif);"><a href="$vboptions[bburl]/" rel="nofollow"
onmouseover="JSFX.fadeIn('forum')"
onmouseout="JSFX.fadeOut('forum')"><img
src="$stylevar[imgdir_misc]/bouton_forum.gif" name="forum" width="93" height="40" border="0" class="imgFader" id="forum" alt="" /></a></td>
</tr>
</table>
</td>
<!-- /Forum -->
that'll get the image in the navbar...to make the rollover work you'll have to go to headinclude...find
Code:
JSFX.Rollover("inscription", "$stylevar[imgdir_misc]/bouton_inscription_over.gif");
copy paste...like
Code:
JSFX.Rollover("forum","$stylevar[imgdir_misc]/bouton_forum_over.gif");
think that's it...