Anyway to make my graphic header a link back to the home page? I have googled it and the ways they claimed would work... did not. If you can help please drop me a PM or reply here. Thanks a lot guys.
If you're using wordpress this should work: <a href="<?php bloginfo('url'); ?>/"><img src="<?php bloginfo('stylesheet_url'); ?>/images/yourImage.jpg" alt="your image" title="your image" /></a> For this code to work, you must have a directory named "images" in your theme directory. If your using anything else...this should work: <a href="http://yoursite.com/"><img src="../images/yourImage.jpg" alt="your image" title="your image" /></a> Hope that helps