View Full Version : Changing text color of Navigation menu links
dbirosel
03-19-2008, 04:02 AM
The style for the navigation links points to .vbmenu_control, with that attached how can I change the color for only one of the links? All links/text are color white. What if I just want Calender to be color Yellow?
Thanks.
Princeton
03-19-2008, 12:26 PM
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")
dbirosel
03-19-2008, 10:54 PM
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:
<!-- 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,me nubar=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:
<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.
SEOvB
03-19-2008, 11:16 PM
If you only want it for those two, and nothing else
<td class="vbmenu_control"><a href="all_albums.php"><span style="color:#HEXGOLDVALUE;">The Gallery</span></a></td>
<td class="vbmenu_control"><a href="vbtubepro.php"><span style="color:#HEXGOLDVALUE;">The Videoz</span></a></td>
If you want it for all the vbmenu_control items, there are easier ways.
Hex color codes: http://cloford.com/resources/colours/500col.htm
dbirosel
03-19-2008, 11:24 PM
If you only want it for those two, and nothing else
<td class="vbmenu_control"><a href="all_albums.php"><span style="color:#HEXGOLDVALUE;">The Gallery</span></a></td>
<td class="vbmenu_control"><a href="vbtubepro.php"><span style="color:#HEXGOLDVALUE;">The Videoz</span></a></td>
If you want it for all the vbmenu_control items, there are easier ways.
Hex color codes: http://cloford.com/resources/colours/500col.htm
Thank you!!!! This worked perfectly.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.