Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#403
Robert Kavgić
Participant

Hi.

If you used the CSS code as you posted it here, you have done it wrong. As I can see, you are using the following CSS selector: .section.note h2. The first dot need to be removed, so the code will look like this: section.note h2, as the section is an element and note is the class (classes are marked with dot).

Copy and paste the following code, and it will be working.

section.note > h2 {
    color: #000 !important;
    font-family: "Times new Roman"
}

Robert