PDA

View Full Version : Schemes in ACP?


Leo Wyatt
05-18-2003, 06:32 PM
Is it possible to have more than one 'scheme' in the Admin COntrol Panel? So you can change the colors whenever you feel like it.

Xenon
05-18-2003, 06:34 PM
just use another css file.

Leo Wyatt
05-18-2003, 07:06 PM
Yeah, but say there's more than one admin and admin A wants to use the #1 scheme, whilst admin B wants to use #2 scheme lol

Xenon
05-19-2003, 07:20 PM
open admin index.php

find:
if ($action=="head") {
?>
<html><head><link rel="stylesheet" href="../cp.css">


and replace it with:
if ($action=="head") {
echo '<html><head><link rel="stylesheet" href="../cp' . $bbuserinfo['userid'].'.css">';
?>


then create a cp1.css which will be used by userid1 and a cp234.css which will be used by userid 234 ^^