I'm trying to figure out how to change the color of the <h1> tags in ButterBelly, which are at the top of each of my pages using CSS. Normally, I'd just write a style like this in the child theme's style.css h1, h2, h3, h4, h5{ color: blue !important; } However, even after doing this, all the <h1> headers are still black. I even went into Firebug and changed the colors there from black to blue, making them !important and ensuring they weren't getting overwritten, but still they were staying black! What should I do? Headers seem to be the only elements I'm having trouble with, since I can modify the color of the paragraphs with no problem. Here's the HTML of the header: <h1 class="page_title"><cufon class="cufon cufon-canvas" alt="Philosophy " style="width: 131px; height: 24px;"><canvas width="152" height="27" style="width: 152px; height: 27px; top: -3px; left: -1px;"></canvas><cufontext>Philosophy </cufontext></cufon><cufon class="cufon cufon-canvas" alt="and " style="width: 50px; height: 24px;"><canvas width="70" height="27" style="width: 70px; height: 27px; top: -3px; left: -1px;"></canvas><cufontext>and </cufontext></cufon><cufon class="cufon cufon-canvas" alt="Facilities" style="width: 96px; height: 24px;"><canvas width="112" height="27" style="width: 112px; height: 27px; top: -3px; left: -1px;"></canvas><cufontext>Facilities</cufontext></cufon></h1>
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .content-bar h1.page_title { color: #E0C5C5;} It will work. Thanks & Regards Nitesh Raghuwanshi