To install template go to 

your blog (in root directory) > wp-content >  themes



In the admin control panel go to

Presentation > Themes

And click on the template under Available Themes




adding the search and comment buttons to the template
-----------------------------------------------------

Unlike the rest of the images, both input buttons are added directly into the html template. 


The search button should be added to the input tag in the header template:

<form method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<fieldset style="border: none;">
<input type="text" name="s" id="s" />

<input type="image" src="COMPLETE URL FOR search.jpg GOES HERE" 
                    ==========================================
 alt="search button" value="<?php _e('Search'); ?>" class="button" />
</fieldset>
</form>


The submit button should be added to the input tag in the header template:


<p><textarea name="comment" id="comment" cols="60%" rows="10" tabindex="4"></textarea></p>

<p><input name="submit" type="image" src="URL FOR comment.jpg GOES HERE"  alt="comment" class="button" id="submit"                                           =============================

tabindex="5" value="Submit Comment" />

<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
</p>



===============================================
Sheepdip. Wordpress Theme Created by Mahud 2007
