In your template folder in the header file look for: <?php bloginfo(‘name’); ?> and remove it.
I removed it from the header.php file but it is still showing up. Is it in another location as well? Thanks for help.
It was on this line right before <title>
<title><?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
It appears it is below it, listed again, maybe it needs to be removed from both places I assume.
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
I figured it out. It was down below a little further on the page. Thanks for the help. I appreciate it.