You’re not alone, something is amiss here. I searched for the widgettitle class in just about every place I could think of but it appears to no longer exist. The first notice of this problem was after my upgrade to 2.2.
Any word on this one? I’d really like to customize the widget titles, etc.
Okay, I figured out the work-around. In your theme’s style.css file, either add or edit this ID:
#sidebar h2
!
I’m trying to change the color of my widget titles. If you take a look at http://blog.miamicondoinvestments.com you will see that all of the widget titles on the right are green. I want to change that to a different color. I tried adding:
#sidebar h2 to my stylesheet but that didn’t seem to do anything.
Any help would be appreciated.
look through your style sheet. there will be a class called sidebar and it should have an h2 within it. You can set the color there. See example
.sidebar ul li h2, .obar ul li h2{
font-size: 16px;
font-weight: bold;
line-height: 27px;
color: #105cb6;
}