• how in css do you prevent the first paragraph from appearing larger and lighter than the others?

    i noticed that the theme does this by default and i dont like it.

    i have set up a child theme.

    many thanks,

    G

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Are you referring to the h1 header tag causing the larger text and underlined? The color of it matches the other text on the page but if you want to change the size and remove the underline you can use this CSS

    .page-holder article h1 {
        font-size: inherit !important;
        text-decoration: none !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘first paragraph’ is closed to new replies.