• How can I make it so that, when a user clicks a link, that link changes color for that user, so he or she knows that it was already clicked? Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You need the a:visited tag – see here

    So in customizr for all links:

    a {
      color: black;
      text-decoration: none;
    }
    a:hover {
      color: blue;
      text-decoration: underline;
    }
    a:visited {
      color: red;
      text-decoration: underline;
    }

    would be an example

    Thread Starter foodergolove

    (@foodergolove)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Customizr] Change color of clicked links.’ is closed to new replies.