Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
Select CSS acording to Date or Time??
Has anyone seen a plugin or any javascript that will enable me to select different CSS sheets at different times of the day?
Is it possible?
I want to have Day and Night mode on the site I am working with and the easiest way I can think is to use different CSS sheets for each.
Any advice or thoughts would be greatly appreciated.
Thanks,
Ben
Offline
Re: Select CSS acording to Date or Time??
something like: <code><link rel=“stylesheet” href=”<txp:php> $currenttime = date(H); if ($currenttime > 17 OR $currenttime < 5) echo ‘night.css’; else echo ‘day.css’;</txp:php>” type=“text/css” media=“all” />
</code> where day.css and night.css are your two style sheets and night is after 6pm and before 6am.
Last edited by Jeff_K (2006-01-30 01:07:56)
Offline
Re: Select CSS acording to Date or Time??
That’s awesome – thanks Jeff!
Offline
Re: Select CSS acording to Date or Time??
Nathan posted a nifty little tutorial on this over at <a href=“http://sonspring.com/journal/time-sensitive-css”>http://sonspring.com/journal/time-sensitive-css</a>
Last edited by Donovan (2006-02-10 20:54:04)
Matt Donovan | [url=“http://www.mdphoto.info”]mdphoto[/url]
Offline
Pages: 1