• Hello, I’ve been editing a www.ads-software.com blog lately, the theme is Swell Lite, and for some reason it automatically bolds and changes to the font of the first paragraph of each post I make. I know how to change the sizes of the font, but I can’t seem to find a way to unbold it from the text editor. What’s going on?

Viewing 1 replies (of 1 total)
  • You can’t do it from the text editor. There’s a CSS rule that affects the first paragraph of each post entry:

    .article h1:first-child + p,
    .article > p:first-child,
    .article span + p {
       color: #333333;
       font-family: 'Droid Serif';
       font-size: 1.1em;
       line-height: 1.6;
    }

    If you want your first paragraphs to look like the rest of the text, add this rule using a child theme or use a CSS plugin like Jetpack or Custom CSS Manager.

    .article h1:first-child + p,
    .article > p:first-child,
    .article span + p {
       color: inherit;
       font-family: inherit;
       font-size: inherit;
       line-height: inherit;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Automatically Bolded Text?’ is closed to new replies.