Hi I need help with this and would be grateful if there is someone who can help me with this. I would like to create theme for worpress which would change layout randomly on each reload. My opinion is that most simple thing to do would be rotating .CSS files. My "luck" is that im not quite great with PHP and i dont know how to do it. Could you please help me with this css rotation or if you have other suggestions about how to rotate layouts? Thanks to all of you!
It would be easy enough to do that in the header.php section; E.G <?php $styles=array("style1.css", "style2.css", "style3.css"); $inc = rand(0, sizeof($styles)-1); ?> <link rel="stylesheet" type="text/css" href="<?php print $styles[$inc];?>" media="screen" /> PHP: You would have to include the relevant path to the stylesheets as well, but you get the idea.