How do you get this to work with the kubrick theme? I created some jpgs and made the random.php file and put it in a directory called “random-logos” off of the root. Below is what I have for “style.css” in the default/kubrick theme
#header {
background-color: #73a0c5;
background-image: url(‘random-logos/rotate.php’);
In headers.php I have the following entry:
body { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgcolor.jpg”); } <?php /* Checks to see whether it needs a sidebar or not */ if ((! $withcomments) && (! is_single()) && (! is_page())) { ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbg.jpg”) repeat-y top; border: none; } <?php } else { // No sidebar ?>
#page { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickbgwide.jpg”) repeat-y top; border: none; } <?php } ?>
#header { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/mael-logo-r.jpg”) no-repeat bottom center; }
#footer { background: url(“<?php bloginfo(‘stylesheet_directory’); ?>/images/kubrickfooter.jpg”) no-repeat bottom; border: none;}
Not sure what to modify in header.php. Your help is greatly appreciated. TIA