The Arcive of vBulletin Modifications Site. |
|
|
#1
|
|||
|
|||
|
I was wondering if there is a way to change the admin panel link at the bottom of the forums to a different color, also the same with the "mod" link.
Thanks Also Just so I don't get anything wrong, I want the admin link to be red and the mod link to be limegreen Thanks again! |
|
#2
|
|||
|
|||
|
In the "footer" template, you could change these lines:
Code:
<if condition="$show['admincplink']"><a href="$admincpdir/index.php$session[sessionurl_q]">$vbphrase[admin]</a> -</if> <if condition="$show['modcplink']"><a href="$modcpdir/index.php$session[sessionurl_q]">$vbphrase[mod]</a> -</if> Code:
<if condition="$show['admincplink']"><a href="$admincpdir/index.php$session[sessionurl_q]" style="color:red">$vbphrase[admin]</a> -</if> <if condition="$show['modcplink']"><a href="$modcpdir/index.php$session[sessionurl_q]" style="color:limegreen">$vbphrase[mod]</a> -</if> |
|
#3
|
|||
|
|||
|
thanks
|
![]() |
|
|