Hmmm that's really odd. Could you try changing the code in the <title></title> tags to just this:
PHP Code:
<?php bloginfo('name'); echo(' — '); bloginfo('description'); ?>
Also try:
PHP Code:
<?php if (is_single() || is_page() || is_archive() || is_home()) { wp_title('',true); } else { bloginfo('name'); echo(' — '); bloginfo('description'); } ?>
There may be some file overriding it but I can't figure out what without looking at alll of your files.

Originally Posted by
antorera
Hello,
Sorry, I had that commented out because I was testing it. Now it's back in and you can see what I'm talking about above, which is still happening.
It's just affecting the front page now. I now have the title code reference above in the header.php page. Don't know what conflict is causing it to happen.
Thanks.
Bookmarks