How to set link colors with Style Sheets
This is just a basic example of how to set link colors on Style Sheets. The code below, just copy and paste and adjust it according to your needs.
a:link{ color :#FF0080; background : #ffffff }
a:active{ color :#FF00FF; background : #ffffff}
a:visited{ color :#808000; background : #ffffff}
a:hover{ color :#808000; background : #ffffff}
