Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › Content Manager Custom Element Classes › Reply To: Content Manager Custom Element Classes
September 18, 2014 at 4:58 pm
#403
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