AbanteCart Community
General Topics => General Discussion => Topic started by: artist3412 on March 04, 2013, 08:54:25 AM
-
I am very happy with most of the layout on the default template, however I would like to change the size and color of the text in the categories block on my homepage. The list text is very small and gray. I want people to be able to see my list of categories that they can click on. I have been looking through my files, but am lost as to where I can change this.
-
Try to change main font size in to 12px:
/storefront/view/default/stylesheet/stylesheet.css
body {
font: normal 11px Tahoma, Arial, Helvetica;
color: #000000;
background: #fff;
margin: 0px;
padding: 0px;
}
If this does not work try to add font and color to .category_list in the same file
-
That worked perfectly, thank you so much.