Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Change body background color each week from four set colors Re: Change body background color each week from four set colors

#135705
donpeppo
Member

this might not be the most elegant solution but its something

$day = date(‘l’);

if($day == ‘Monday’)
{
//monday color code
}
elseif($day == ‘Thuesday’)
{
//thuesday color code
}
//..and so on…