Quote:
Originally Posted by MikesSite
I've searched and tried and wasnt successful in either. How can I change the 'Garage' text link to the menu in the user postbit to an icon? Thanks.
|
If you edit the "dto_garage_popup_menu" template look for the following:
PHP Code:
<if condition="$use_username_in_link">
<phrase 1="$userinfo[username]">$vbphrase[xs_garage] </phrase>
<else />
Garage
</if>
</a>
and change to
PHP Code:
<if condition="$use_username_in_link">
<phrase 1="$userinfo[username]">$vbphrase[xs_garage] </phrase>
<else />
<!-- Garage -->
<img src="$vboptions[bburl]/images/your-icon-name.gif">
</if>
</a>
That should present the icon where the Garage link would normally appear in the postbit.
Mark