Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / SubCategory Link Style

SubCategory Link Style

Locked

Views: 839

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
26 Feb 2009, 2:07 AM
#1
dave_nextexit avatar

dave_nextexit

New Zenner

Join Date:
Mar 2008
Posts:
57
Plugin Contributions:
0

SubCategory Link Style

Hi all,

I have a pretty basic request but I couldnt find the answer anywhere...

I want to change the color and size of my subcategory links below the images on the main subcategory page (the Home > Main Category > SubCategory page).

Can anyone help with this?

Thanks,

Dave

27 Feb 2009, 6:52 PM
#2
tony_sar avatar

tony_sar

Totally Zenned

Join Date:
Jul 2006
Location:
Montreal, Canada
Posts:
2,276
Plugin Contributions:
0

Re: SubCategory Link Style

at the end of your stylesheet.css , enter the following

.categoryListBoxContents a {
color:black;
}

change the color to what you want
if you want hover then also add the following

.categoryListBoxContents a:hover {
color: your hover color ;

}

6 Mar 2009, 5:25 PM
#3
dave_nextexit avatar

dave_nextexit

New Zenner

Join Date:
Mar 2008
Posts:
57
Plugin Contributions:
0

Re: SubCategory Link Style

Worked great, thanks Tony!