I'd like to change the color of the links in my sidebar but I would also like the hover color to remain as is. How do I do that?
This code changes the color of some of the sidebar links but not all of them. The other issue is that it eliminates the hover color.
widget ul li a {
color:#919191;
}
Platform Pro theme.
site:
Sidebar Link Color
Started by
jonroemer
, Jan 07 2011 11:41 PM
2 replies to this topic
#1
Posted 07 January 2011 - 11:41 PM
#2
Posted 08 January 2011 - 05:23 PM
Add these:
`
.widget ul li a {
color:#919191;
}
.widget ul li a:hover {
color:#WHATEVER;
}
#page .scolumn a {
color:#919191;
}
#page .scolumn a:hover {
color:#WHATEVER;
}
`
#3
Posted 08 January 2011 - 05:48 PM
Most - excellent. I never would have figured that out.
Thank you!










