Quote:
Originally Posted by Princeton
you will have to modify the template for that specific link
depending on your needs, you can add a new class (eg. class="red_vbmenu_control") or just use inline stylesheet (eg. style="color:red")
|
I tried those methods and it don't seem to work.
This is the code:
Code:
<!-- top nav buttons bar -->
<div class="tborder" style="padding:1px; border-bottom-width:0px; font">
<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr align="center">
<td class="vbmenu_control"><a href="index.php?$session[sessionurl]">Home</a></td>
<td class="vbmenu_control"><a href="all_albums.php">The Gallery</a></td>
<td class="vbmenu_control"><a href="vbtubepro.php">The Videoz</a></td>
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=process&showposts=0&starteronly=1&exactname=1&searchuser=$bbuserinfo[username]">My Threads</a> / <a href="search.php?$session[sessionurl]do=process&showposts=0&exactname=1&searchuser=$bbuserinfo[username]">Replies</a></td>
<td class="vbmenu_control"><a href="#" onClick="window.open('misc.php?$session[sessionurl]do=buddylist&focus=1','buddylist','statusbar=no,menubar=no,toolbar=no,scrollbars =yes,resizable=yes,width=250,height=300'); return false;">Contacts</a></td>
</if>
<if condition="$bbuserinfo[usergroupid] == 6">
<td class="vbmenu_control"><a href="$admincpdir/index.php$session[sessionurl_q]">AdminCP</a></td>
</if>
</tr>
</table>
</div>
<!-- / top nav buttons bar -->
I want this text to be color gold:
Code:
<td class="vbmenu_control"><a href="all_albums.php">The Gallery</a></td>
<td class="vbmenu_control"><a href="vbtubepro.php">The Videoz</a></td>
How do I accomplish this?
Thanks.