Can you post a link to your site?
On some posts, you’ve got a <span> surrounding the “Read More” link that explicitly sets the text size to 14pt:
<span style="color: #808080; font-family: corvallis; font-size: 14pt;">... text omitted for clarity...</span>
Did you add those yourself or were they added by a plugin or something else?
No, I have no idea how they got there! Or that they were there..
How do I change it?
I have the font set to 14 and I like the look of the bigger read more tag
Those <span>s don’t seem to have been added by the theme. Are you using any plugins that might have added them? If you temporarily switch to the Text editor, do they appear?
I have added Corvallis text through a plugin I believe – it’s not on my newest post yet.. I haven’t yet changed the font to corvallis either.
If you temporarily disable the plugin, do the <span>s go away?
If you can get the <span>s to go away, you could set the font using CSS instead:
.entry-content {
font-family: "corvallis";
font-size: 14px;
}
.more-link {
font-size: 18px;
}
no, but the option to change the font in the post went away and nothing changed when I added that to the CSS.
Should I go in and delete all of those tags manually?
Yes, because it’s likely that the existence of the <span> tags prevented the CSS from taking effect. You may also need to force-refresh your browser (see your browser’s documentation).