How to set a color for all pages in php? -
how can set background colors pages inside of php session? , recall on each page? right im using:
include('background.php')
but im using basic pages, have whole page setup other colors change to, dont want write 150 pages colors whole site, there easier way this?
instead of including php file, should try this.
every time want modify background color, add class body.
<?php $bodyclass = ''; if (your condition) $bodyclass = 'darkbackground'; ?> <body class="<?php echo $bodyclass; ?>"> ...
then in css file:
body.darkbackground {background-color: black}
Comments
Post a Comment