Applying H4 css to headline

Is there an easy way to have a headline element, that has h4 defined in the setup panel, inherit the h4 style from the css style sheet? This code is over-ridden by the element css.

I tried to add h4 to the customize class field, but that wasn’t enough.
I’m trying to avoid having to recreate the style that is already defined in the style sheet.

I’d like to use headline versus text because I want an icon over the text, using the flex layout works best for this.

h4, .h4 {
font-size: .85rem;
letter-spacing: 0.031em;
color: rgb(0,0,0);
}

Hi @wbgTHEMECO,

Thank you for reaching out to us. You can replace your code with the following code, make sure to add this in the Theme Options > CSS:

h4, .h4 {
font-size: .85rem !important;
letter-spacing: 0.031em !important;
color: rgb(0,0,0) !important;
}

This should over-ride the element CSS. Let us know how this goes!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.