link color If you find the default bright blue color of your text links unappealing you can change the color. The easiest way to do that is to just highlight the linked text and choose a different font color. It will change the link color, but the link won't change on hover or when clicked. If you want more, then use the code below. You may not find bright pink and orange any more appealing than the bright blue, in which case change the color number to one of your liking. a:link {color: #000000;text-decoration:none;} a:visited {color: #000000;text-decoration:none;} a:hover {color: #f433b1;text-decoration:underline;} a:active {color: #FF6C00;text-decoration:none;} As is, with this code the links will be black, change to pink and underline on hover and then change to orange with no underline when clicked. Visted and unvisited links are the same color. If you have changed any of your text links manually (by highlighting and selecting a font color) you may have to remove the text and do them again to have the code work. navigation link color Changing the links seems to also effect the navigation links. I used this code to change the navigation link color to black and change to white on hover and to remove the underline. It will work for top or left navigation. .MSC_PrimaryNavLink { color:#000000 !important; font-size:12px; text-decoration:none; } .MSC_PrimaryNavLink:hover { color:#ffffff !important; font-size:12px; text-decoration:none !important; } top other link effects Link text is bold: a:link {color: #000000;text-decoration:none;font-weight:bold;} a:visited {color: #000000;text-decoration:none;font-weight:bold;} a:hover {color: #f433b1;text-decoration:underline;font-weight:bold;} a:active {color: #FF6C00;text-decoration:none;font-weight:bold;} You can also just highlight the linked text and click on bold (B) instead of using code. This is handy if you don't want all of the text links to be bold. Links underline on hover, visted links are lined through and change to underline on hover: a:link {color: #000000;text-decoration:none;} a:visited {color: #000000;text-decoration:line-through;} a:hover {color: #f433b1;text-decoration:underline;} a:active {color: #FF6C00;text-decoration:none;} Links have a background color on hover and when clicked: a:link {color: #000000;text-decoration:none;} a:visited {color: #000000;text-decoration:none;} a:hover {color: #f433b1;text-decoration:underline;background-color:#dfdfdf;} a:active {color: #FF6C00;text-decoration:none;background-color:#dfdfdf;} The CSS code I used for the links on this site, on hover the links have a background color and are overlined: a:link {color: #000000;text-decoration:none;} a:visited {color: #000000;text-decoration:none;} a:hover {color: #1F70C1;text-decoration:overline;background-color: #cadef7;} a:active {color: #f433b1;text-decoration:overline;background-color: #cadef7;} The line-through, underline, overline and background color changes still seem to work for links that you manually change the color of the text (highlight and select a different text color). The link below for the top of the page I used the font color selector to change it orange. Hover over it and see what happens. |