You're using the ProSense theme, which doesn't leave much room under the header.
I would suggest putting the image next the RSS icon on the right.
If, for example, you decided to place the image link next to the RSS icon on the right,
you would need to open the
header.php file - located in the ProSense theme folder.
Find the following code in the file mentioned above...
Code:
<div id="header_right">
<div id="subscribe">
<a rel="nofollow" href="<?php bloginfo('rss_url'); ?>" title="Subscribe to RSS feed" rel="nofollow"><img src="<?php bloginfo('template_url'); ?>/images/rss-feed-icon.jpg" alt="Subscribe to RSS feed" /></a>
</div>
</div>
You would then need to add a link like the one below...
Code:
<a href="http://WWW.YOUR-URL.COM" title=" "><img src="YOUR-IMG.JPG" alt=" " /></a>
The modified code should now look like this...
Code:
<div id="header_right">
<div id="subscribe">
<a href="http://WWW.YOUR-URL.COM" title=" "><img src="YOUR-IMG.JPG" alt=" " /></a>
<a rel="nofollow" href="<?php bloginfo('rss_url'); ?>" title="Subscribe to RSS feed" rel="nofollow"><img src="<?php bloginfo('template_url'); ?>/images/rss-feed-icon.jpg" alt="Subscribe to RSS feed" /></a>
</div>
</div>
Obviously, you would need to change "WWW.YOUR-URL.COM" and "YOUR-IMG.JPG"
to the actual names.
This is the simple way. Let me know if you have any questions.
