Hi again
One more question. How do you change the main photo image?
Thanks, Harvey
Hi again
One more question. How do you change the main photo image?
Thanks, Harvey
The easy way
The easiest way is to open up your theme directory and go to /images/header_images/ and replace any of those images with your new image.
The "correct" way
Open up header.php around line 66 you'll see this code:
<div id="headerimg">
<?php if(is_home()) { ?>
<img src="<?php bloginfo('template_url'); ?>/images/header_images/header4.jpg" title="<?php bloginfo('name'); ?> Random Header Image" />
<?php }elseif(is_single()) { ?>
<img src="<?php bloginfo('template_url'); ?>/images/header_images/header2.jpg" title="<?php bloginfo('name'); ?> Random Header Image" />
<?php }elseif(is_page()) { ?>
<img src="<?php bloginfo('template_url'); ?>/images/header_images/header3.jpg" title="<?php bloginfo('name'); ?> Random Header Image" />
<?php }else{ ?>
<img src="<?php bloginfo('template_url'); ?>/images/header_images/header1.jpg" title="<?php bloginfo('name'); ?> Random Header Image" />
<?php } //endif ?>
</div>
You'll need to upload your image to that /images/header_images/ directory and then change the image filename (header1.jpg, header2.jpg, header3.jpg, etc...) to the one you want for the section (is_home(), is_single(), is_page(), etc) you want it to appear in.
You must log in to post.