If you are having the same problem as i had, then i can help.
I wanted to change the h1 and h2 font sizes on my pages. So i “inspected the element” to find out exactly what it was called, which was
“.entry-content h2” or if you want to change h1 then “.entry-content h1”
Use Ctrl+F then type .entry-content h2 when you are in your stylsheet.css file (not Visual editor.css) and it should highlight where it is and then you just change the css font size there.
Here is what mine looked like and i changed the color and font-size to what you see there:
———————-
.entry-content h1,
.entry-content h2,
.comment-content h1,
.comment-content h2 {
color: #FAA61A;
font-weight: bold;
margin: 0 0 .8125em;
font-size: 30px ! Important;
}
———————————–
I hope this helps
Shaun
[ Signature moderated. ]