Whew!
I finally found the solution.
The fix for this is to remove the line:
<span class="blogname"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></span>
…from the header.php page in your WP Include/Themes/(your theme) folder. (NOTE: The line above may not appear exactly as shown, but it will be very close). Don’t forget to upload the modified header.php page to your server.
Then, add the following at the bottom of your style.css template in WordPress:
#header h1 { display:none }
At least this worked for me!
??