A whole buch of images created to be used as headers in the kubrick theme.
Or you could use an image from Flickr as a kubrick header by using kubrickr
Or you could modify the header to load a random images of your choosing by :-
First add
< ?php
function header_graphic() {
echo "/images/";
$num=rand(0,9);
echo "seorasheader".$num.".jpg";
};
?>
to the header.php file which will randomly select an image from a bunch named seorasheader0.jpg –> seorasheader9.jpg.
Next, change the line in header.php
from:-
#header { background: url("< ?php bloginfo('stylesheet_directory'); ?>/images/kubrickheader.jpg") no-repeat bottom center; }
to:-
#header { background: url("< ?php bloginfo('stylesheet_directory'); header_graphic(); ?>") no-repeat bottom center; }