Hi Tony
To add a class to your css file, go to your XCart admin area and click on the "Edit Templates" link which is located on the right side of the page under "Administration".
Under the "Browse Templates" section, click on the skin1.css file to open it. The skin1.css template file will be opened up in a editing pane.
Scroll down the file in the pane until you find this:
Code:
.CategoriesList {
FONT-SIZE: 12px;
}
and change it to:
Code:
.CategoriesList {
FONT-SIZE: 12px;
}
.CategoriesListHead {
FONT-SIZE: 12px; COLOR: #894142; FONT-WEIGHT: bold;
}
Click the "Save File" button to save the file.
This will add a new class to your css file so you can style the heading of the category list. You can change the color or style to whatever you want.
Hope this helps,