Have you tried:
– deactivating all plugins to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s).
– switching to the Twenty Eleven theme to rule out any theme-specific problems.
– resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.
I just tried the plug ins and that didn’t work. I’m heading to my FTP now
Well, It has to be something in the theme. I switched to Twenty Eleven and it corrected the problem. Not sure what it is..
As this is a commercial theme, we cannot really help. You need to seek support from the theme vendors.
some code (plugin or build-in) is wrapping the caps of the title into a span (there are associated styles embedded in the header):
.....Mulloy, <span class="caps">PT</span>, <span class="caps">MHS</span>, <span class="caps">OCS</span>
also, the code for the title line might be wrongly using ‘the_title()’ instead of ‘the_title_attribute()’ in the title attribute of the html link tag.
—
from checking the free evolve theme:
in index.php, about in the middle:
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
change to:
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
Well that didn’t fix it. So, I changed the title to lower case and that fixed it. Now I need to figure out why caps are spanning my title.
Well that didn’t fix it.
could you paste the full code of index.php of your theme into a http://pastebin.com/ and post the link to it here?
Now I need to figure out why caps are spanning my title.
do you by any chance use the wp-typography plugin?