I want to use the same theme for all blogs, but each blog will have several header images that are rotated each time a page is loaded.
Currently I have multiple copies of the same theme for each blog calling the following code. Under each theme is a folder called headers and rotator.php which does the rotating (the site is rhmpano.org)
in the css file I use this code to do the image rotation.
'#header02 {
position:relative;
background: url(headers/rotator.php) no-repeat center top;
height:140px;
}'
In the header.php I then call it simply with
'<div id="header02">'
my ideal solution would be to have under blog.dr - blog-id a folder called headers with the header images and rotator.php which does the rotation and have the css file determine the url by the blogs id.
This will probably also have to work with the multi-site plugin.