• Resolved draigGoch

    (@draiggoch)


    All header text is uppercase.

    In main-style.css this works:

    h1, h2, h3, h4, h5, h6 { margin:0; text-transform:none; }

    but, when I do any changes in Appearance > Customize or in Cherry Options it overrides the changes above. Also, adding the above code to style.css doesn’t work.

    Any help would be appreciated 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • You could try adding the !important tag ….

    h1, h2, h3, h4, h5, h6 { margin:0; text-transform:none !important; }

    …. and place the rule into the style.css file of your child theme, or use a custom code plugin such as simple custom css to add the code. This will stop the code being overwritten when you update your theme

    Thread Starter draigGoch

    (@draiggoch)

    Thank you!

    I used !important in the main-style.css

    Great. That’s a useful tag to force a css rule.

    Just keep in mind that without the child theme you’ll need to replace this rule every time you update the theme.

    Cheers.

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

The topic ‘Changing header text from uppercase to normal’ is closed to new replies.