Thank you braad! What would be the best way to identify which plugins are loading these other versions?
Awsome! thank you. Worked like a charm. How do I get the icons to show different hover colors? For example the facebook icon in a dark blue, while twitter is a light blue. Right now they don’t have a color at all. I would like to make the RSS icon orange.
If you only want a log in the titlebox, in the Header.php file, find in the code where it says:
<div class=”title-box”>
<h1 class=”site-title”>” rel=”home”><?php bloginfo( ‘name’ ); ?></h1>
<h2 class=”site-description”><?php bloginfo( ‘description’ ); ?></h2>
</div>
</div>
Replace the h1 and h2 classes with:
<img src=”image_url_here”>
So it should look like:
<div class=”title-box”>
<img src=”image_url_here”>
</div>
</div>
If you want to keep the Title and/or Description, do not remove the h1/h2 code I told you to remove. Just add the image code.