Lol, yeah...
Ok I'm not sure if I get it but right now is set like this
`
<?php
if (zp_loggedin(USER)) {?>
<link rel='stylesheet' href='<?php echo $path; ?>custom.css' type='text/css' />
<?php } else { ?>
<link rel='stylesheet' href='<?php echo $path; ?>admin.css' type='text/css' />
<?php } ?>
`
Only one last thing, when I'm logged in as admin my stylesheet is custom.css whereas when I'm logged in as user my stylesheet is admin.css. Shouldn't it be the opposite?
Not a problem, I could always switch the code but I'm trying to understand.