• Hello,

    I am using the Sela theme – the “Read More” link is showing up with different font sizes for each post and I have no idea why.
    I have highlighted and changed all of the text in each post to the same font, size and colour and nothing changed.
    Is there something I am mising?

Viewing 9 replies - 1 through 9 (of 9 total)
  • Can you post a link to your site?

    Thread Starter krystaelliott

    (@krystaelliott)

    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?

    Thread Starter krystaelliott

    (@krystaelliott)

    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?

    Thread Starter krystaelliott

    (@krystaelliott)

    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;
    }
    Thread Starter krystaelliott

    (@krystaelliott)

    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).

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Different Font Sizes’ is closed to new replies.