Ok I used to have my theme with only one image static throughout the whole site. However, I changed over to the random header file made by Chris. My beef is now that in my header prior I had text and now with the random header generator I cant get my text in the header without it pushing my images over to the side. Can anyone help?
My sit before was using the <div id="header_img"> (putting a background to that in the css) followed by and <h1>blah blah blah</h1> so the H1 was laying over the image.
Now I have
<div id="header_img">
<?php if (is_page('home')) { ?>
<img src="<?php bloginfo('template_url'); ?>/images/header_3.jpg" width="857" height="176" alt="<?php bloginfo('name'); ?> home page header image" title="<?php bloginfo('name'); ?> home page header image" />
<?php } elseif (is_page('about')) { ?>
<img src="<?php bloginfo('template_url'); ?>/images/header_2.jpg" width="857" height="176" alt="<?php bloginfo('name'); ?> about page header image" title="<?php bloginfo('name'); ?> about page header image" />
<?php } else { ?>
<img src="<?php bloginfo('template_url'); ?>/images/header_<?php echo(rand(1,3)); ?>.jpg" width="857" height="176" alt="<?php bloginfo('name'); ?> random header image" title="<?php bloginfo('name'); ?> random header image" />
<?php } ?>
and I cant insert an <h1> without pushing the Images...