MyBB Community Forums

Full Version: Random background - possible?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to make forum select random background from certain folder or certain images?

I want forum to pick from those images randomly and make it background image.
This should apply for first visit only.
You can use Template conditionals: http://mybbhacks.zingaburga.com/showthre...464&page=9 with code like this:
<div id="container" style="background-image: images/folder/<if !empty($mybb->cookies['randomcookie']) then><?=intval($mybb->cookies['randomcookie'])?><else><?=my_rand(1, 10)?></if>.png;">
and add a jQuery script or whatever that will extract the number and set the cookie to contain it.
I am not very good with jquery, I heard it is possible to do this via php ?
You can try using my_setcookie() but it may result in warnings. PHP in Templates would be better then.