any idea how i can change the link color for the center box only?
any idea how i can change the link color for the center box only?
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?
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 )
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"PHP Code: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;
Last edited by stevefriedman71; 13 Feb 2011 at 09:36 PM.
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
didn't work out the way i wanted. it also changed the sidebox colors
change:
#contentMainWrapper
to:
.centerColumn
thanks. that did it![]()