I'm sure this is hidden somewhere in one of the style sheets, but I can't find it. I want to change the color of the links. The current color is the same or almost the same as the surrounding text.
I'm sure this is hidden somewhere in one of the style sheets, but I can't find it. I want to change the color of the links. The current color is the same or almost the same as the surrounding text.
Near the top of the main stylesheet.css, you will see declarations for links:
You can change links sitewide here, or add more narrowly defined selectors to change them in specific places.Code:a:link, #navEZPagesTOC ul li a { color: #3300FF; text-decoration: none; } a:visited { color: #3300FF; 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: #FF0000; } a:active { color: #0000FF; }