links

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • cdm2883
    New Member
    • Sep 2007
    • 53

    links

    How do you change the colors of your links in you coding.


    Thanks
    David
  • nomad
    Recognized Expert Contributor
    • Mar 2007
    • 664

    #2
    Originally posted by cdm2883
    How do you change the colors of your links in you coding.
    For just a page

    You could do something like this
    <head>
    <style type="text/css">
    <!--
    a:link {
    color: #0000FF;
    }
    a:visited {
    color: #00FF00;
    }
    a:hover {
    color: #FFCC00;
    }
    a:active {
    color: #FF0099;
    }
    -->
    </style></head>

    nomad

    Comment

    Working...