Log in

View Full Version : Admin Panel Link Color Change


DJ29Joesph
11-12-2009, 05:19 PM
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!

kh99
11-12-2009, 05:58 PM
In the "footer" template, you could change these lines:

<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>
to look like this:

<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>

DJ29Joesph
11-12-2009, 06:08 PM
thanks :)