Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Change Link Colors for Sideboxes Only

Change Link Colors for Sideboxes Only

Views: 794

Results 1 to 3 of 3
1 Jul 2011, 9:36 AM
#1
carol2848 avatar

carol2848

New Zenner

Join Date:
Nov 2007
Posts:
78
Plugin Contributions:
0

Change Link Colors for Sideboxes Only

I would like to change the link colors (normal, visited, and hover) for the sideboxes only, so that it doesn't affect the rest of the store.

I know how to change the links for the entire store in the css, but how do I separate out just the sideboxes so they can be different from everything else?

1 Jul 2011, 4:13 PM
#2
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: Change Link Colors for Sideboxes Only

.leftBoxContainer a, .rightBoxContainer a {color: #aabbcc;}
.leftBoxContainer a:visited, .rightBoxContainer a:visited {color: #112233;}
.leftBoxContainer a:hover, .rightBoxContainer a:hover {color: #445566;}

1 Jul 2011, 7:48 PM
#3
carol2848 avatar

carol2848

New Zenner

Join Date:
Nov 2007
Posts:
78
Plugin Contributions:
0

Re: Change Link Colors for Sideboxes Only

Perfect! Thanks!! :clap: