how to change link color?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Priya priety
    New Member
    • Oct 2012
    • 2

    how to change link color?

    I want my links color should get change if I click on it
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    Create a CSS style for the link's visited Selector.

    -Frinny

    Comment

    • martin631775
      Banned
      New Member
      • Dec 2012
      • 13

      #3
      use this code to chage the color u can give any color..
      Code:
      a:visited {
        color:green;
        text-decoration: none;
      }
      for more help..[Link removed]
      Last edited by Meetee; Jan 2 '13, 08:09 AM. Reason: Link removed

      Comment

      • dianagaby2002
        New Member
        • Jul 2012
        • 9

        #4
        Code:
        a:active
        {
        background-color:orange;
        }
        Code:
        a:active
        {
        color:orange;
        }

        Comment

        Working...