To use multiple colors for the links on this site a Pseudo class was the answer. To create a Pseudo class all we need to do is add a few things to our already existing CSS code.
A.bod:link {color:#FF8500; font-weight:400; text-decoration:none}
A.bod:active {color:#FFFFFF; font-weight:400; text-decoration:none}
A.bod:visited {color:#FF8500; font-weight:400; text-decoration:none}
A.bod:hover {color:#FFFFFF; font-weight:500; text-decoration: none} |