Different Theme Each Day? Different Theme Each Day?
 

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

Main Menu

Different Theme Each Day?

Started by MothBox, September 01, 2005, 02:30:49 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

MothBox

I want to set up my gallery so that it displays a different theme each day for everyone. Guests and members.

But, I need to be able to choose the order - not random - so that I can set the forum and other pages to be on the same theme for that day.

Is there a MOD which can do this?

kegobeer

Do not send me a private message unless I ask for one.  Make your post public so everyone can benefit.

There are no stupid questions
But there are a LOT of inquisitive idiots

snork13

<script type="text/javascript"><!--

var daycontent=new Array()
daycontent[0]="sunday.htm";
daycontent[1]="monday.htm";
daycontent[2]="tuesday.htm";
daycontent[3]="wednesday.htm";
daycontent[4]="thursday.htm";
daycontent[5]="friday.htm";
daycontent[6]="saturday.htm";

var today=new Date().getDay();

location.replace(daycontent[today]);

//--></script>



this script seems to be working for me, throw it in only one theme, make that theme the default and change the daycontent to equal your themes.

-snork