I have Googled all over the place, searched vBulletin.org, as well as many other vBulletin related sites and I cannot find any tips on how to replace the text links in the vBulletin Navbar with images.
Does anyone know how to do this? I believe it requires editing the Navbar template at the <!-- nav buttons bar -->
. <!-- /nav buttons bar --> location but I don't know how this is done.
I tried simply replacing this:
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">
$vbphrase[user_cp]</a></td>
with this:
<td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">
img src="images/myimage.gif"</a></td>
but that didn't work.
I then tried using <td class="vbmenu_control"><a href="usercp.php$session[sessionurl_q]">
url('images/myimage.gif')</a></td>
but that doesn't work either.
Can anyone explain how to do this?
Thanks