On 4/17/07, Christophe David <[EMAIL PROTECTED]> wrote:
> Could somebody please recommend a clean way to change the background color
> of the pages for a given group without defining a new skin ?
>
> Is it possible by setting a variable in "Group.php" ?

Just put

$HTMLStylesFmt[] = ' body { background-color:#f4f4f4; } ';

to Group.php or

body {
        background-color:#f4f4f4;
        }

to pub/css/Group.css.

Or you can set it in config.

if ($group == 'CertainGroup')
  {
  $HTMLStylesFmt[] = ' body { background-color:#f4f4f4; } ';
  }

Roman

_______________________________________________
pmwiki-users mailing list
[email protected]
http://www.pmichaud.com/mailman/listinfo/pmwiki-users

Reply via email to