#
February 21, 2013 at 6:48 pm
Can I have heading styles set for my site example:
h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
And then in my content I’d have
#post h1 {
font-size: 35px;
color: red;
}
Would this work? because I tried it and my main styles at top keep taking over my other styles such as #post h1.
Not sure what the problem is or if there’s another solution?