I just paid a guy to make a blog header for me and the problem is that I dont know how to put it in my blog as I am pretty new in coding and dont know the exact procedure of how and where to save the header in order to make it operational. Any hep appreciated. Thanks.
If you already have a header image, and your new image is exactly the same size as the old one, it could be as easy as naming your new image to the same file name as your old image, and overwriting via ftp. If it's a different size, or if it doesn't have an image to begin with, you will need to edit the stylesheet, and possibly the header.php too.
open up the themes header.php (wp-content/theme-name/header.php) and change <div id="header"> <div id="header_left"> <h1><a href="http://earnersspot.com">earnersspot.com</a></h1> <div class="description">Earning Online</div> </div> <div id="header_right"> <div id="subscribe"> <a href="http://earnersspot.com/feed/rss/" title="Subscribe to RSS feed" rel="nofollow"><img src="http://earnersspot.com/wp-content/themes/ProSense/ProSense/images/rss-feed-icon.jpg" alt="Subscribe to RSS feed" /></a> </div> </div> <div style="clear:both;"></div> </div> PHP: to something like <div id="header"> <div id="header_left"> <img src="path/to/your/image" /> </div> <div style="clear:both;"></div> </div> PHP: