The search header, unlike most sidebox headings, is a label and follows the generic label rule. To make it follow the same rules as the rest, find these in your stylesheet:
Code:
h3.leftBoxHeading, h3.leftBoxHeading a {
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
font-size: 1.05em;
color: #FFFFFF;
background-color: #545d3e;
padding: 0.3em;
margin: 0em;
}
...
h3.rightBoxHeading, h3.rightBoxHeading a {
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
font-size: 1.05em;
color: #FFFFFF;
background-color: #545d3e;
padding: 0.3em;
margin: 0em;
}
and add
, h3.leftBoxHeading label
and
, h3.rightBoxHeading label
to get
Code:
h3.leftBoxHeading, h3.leftBoxHeading a, h3.leftBoxHeading label {
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
font-size: 1.05em;
color: #FFFFFF;
background-color: #545d3e;
padding: 0.3em;
margin: 0em;
}
...
h3.rightBoxHeading, h3.rightBoxHeading a, h3.rightBoxHeading label {
font-family: trebuchet ms, verdana, arial, helvetica, sans-serif;
font-size: 1.05em;
color: #FFFFFF;
background-color: #545d3e;
padding: 0.3em;
margin: 0em;
}
BB ;)