The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Changing text color of Navigation menu links
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. |
#2
|
||||
|
||||
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") |
#3
|
|||
|
|||
Quote:
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 --> 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> Thanks. |
#4
|
||||
|
||||
If you only want it for those two, and nothing else
Code:
<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> Hex color codes: http://cloford.com/resources/colours/500col.htm |
#5
|
|||
|
|||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|