Zen Cart Logo

Link color

Views: 680

Results 1 to 7 of 7
13 Feb 2011, 6:45 PM
#1
stevefriedman71 avatar

stevefriedman71

Zen Follower

Join Date:
Sep 2006
Posts:
269
Plugin Contributions:
0

Link color

any idea how i can change the link color for the center box only?

13 Feb 2011, 8:06 PM
#2
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Link color

Can you be a little more specific?

post your site URL* so it can be seen in action and what links in what center box?

13 Feb 2011, 8:31 PM
#3
stevefriedman71 avatar

stevefriedman71

Zen Follower

Join Date:
Sep 2006
Posts:
269
Plugin Contributions:
0

Re: Link color

at test.themeltingpotonline.net/shop
As you can see, the text that is a link is black. that works great in the sideboxes but not as good in the centerbox. i want to leave the link colors as they are in the sideboxes ( i set those in the CSS )

a:link, #navEZPagesTOC ul li a {
	color: #000000;
	text-decoration: none;
	}
 
a:visited {
	color: #FFFF9D;
	text-decoration: none;
	}

a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
	color: #FFFFFF;
	background-color:#1B170E
	}

a:active {
	color: #FFFF00;

But i'd like the link colors for the center box differently. To make them easier to read on the darker back ground of the centerbox. that is about everything from the "log in" to the text under the product images to open the "larger image"

13 Feb 2011, 9:20 PM
#4
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Link color

find:
/wrappers - page or section containers/

add this:
#contentMainWrapper a:link, a:visited {
color: #FFFF9D;
}

above:
#logoWrapper

change color to whatever your heart desires.

add:
#contentMainWrapper a:hover {
color: #FFFF9D;
background-color:#1B170E
}

if you want to also change the color of the background when link is hovered over

THIS WILL CHANGE THE CENTER OF EVERY PAGE THAT HAS LINKS

13 Feb 2011, 10:19 PM
#5
stevefriedman71 avatar

stevefriedman71

Zen Follower

Join Date:
Sep 2006
Posts:
269
Plugin Contributions:
0

Re: Link color

didn't work out the way i wanted. it also changed the sidebox colors

13 Feb 2011, 10:29 PM
#6
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: Link color

change:
#contentMainWrapper

to:
.centerColumn

13 Feb 2011, 10:42 PM
#7
stevefriedman71 avatar

stevefriedman71

Zen Follower

Join Date:
Sep 2006
Posts:
269
Plugin Contributions:
0

Re: Link color

thanks. that did it:clap: