Forums Index > Mewsoft Products > Auctionawy > How to Change Font Color on Catagory Listings
daschenbrener First Post Posted on: 12-15-08 06:45 AM
How to Change Font Color on Catagory Listings

I have having a hard time locating where to change the default font color red on the catagory listing , on the main page.\ \ I have tried to look in the header class but cannot find it.\ Also am not too sure how to edit the Class::Body.\ \ Thanks\ \ David G. Aschenbrener
mewsoft Reply #: 1 Posted on: 12-15-08 10:53 AM
Re: How to Change Font Color on Catagory Listings

The red color is set the default for all links by the CSS in the header:


Code: HTML
</p><p><br />a            { color: #A60000; font-family: Arial, Helvetica; text-decoration: underline }<br />a:hover      { color: #0066FF; font-family: Arial, Helvetica; text-decoration: none }<br /></p><p>

and you can change itto anything. Also in the header many classes not used and you will find .cat class that you can customize and use it only for categories as also you can create your own classes etc.

The Class Body is not specific clas it is the output of the program which is built from many classes on each page, for example on the homepage it is built from the Home page categories which you custoize its Category class.


Mewsoft Support
www.mewsoft.com

daschenbrener Reply #: 2 Posted on: 12-16-08 05:16 AM
Re: How to Change Font Color on Catagory Listings

Thank you for your help.