Pretty simple mate
go to your stylesheet.css and figure out
.leftboxheading, .rightboxheading, .centerboxheading, .singleboxheading {
Now, we just need to change the font proerty for .leftboxheading
So,
replace the section
.leftboxheading, .rightboxheading, .centerboxheading, .singleboxheading {
/background-color: #abbbd3;/
font-size: 10px;
font-weight: bold;
// color: #ffffff;
color: #9966FF;
padding: 3px;
height: 20px;
padding-left: 5px;
}
WITH
.rightboxheading, .centerboxheading, .singleboxheading {
/background-color: #abbbd3;/
font-size: 10px;
font-weight: bold;
// color: #ffffff;
color: #9966FF;
padding: 3px;
height: 20px;
padding-left: 5px;
}
.leftboxheading
{
/background-color: #abbbd3;/
font-size: 15px; / * This changes the font size for categories */
font-weight: bold;
// color: #ffffff;
color: #9966FF;
padding: 3px;
height: 20px;
padding-left: 5px;
}
Please note that yo umight have these defined in other ways