jonroemer 0 Report post Posted January 7, 2011 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: http://www.jonroemer.com/blog/ Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 8, 2011 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; } ` Share this post Link to post Share on other sites
jonroemer 0 Report post Posted January 8, 2011 Most - excellent. I never would have figured that out. Thank you! Share this post Link to post Share on other sites