HTML button question

Out of context: Reply #3

  • Started
  • Last post
  • 8 Responses
  • ian0

    Well I usually use separate CSS pages but think it works the same.
    Try using this one, its one i've used on a site and seems to work fine, just replace you're existing a:link style with it to test.

    a:link {
    color: #FF9933;
    }
    a:visited {
    color: #FF9933;
    }

    a:focus {
    color: #00ACEE;
    }

    a:hover {
    color: #00ACEE;
    }

    a:active {
    color: #00ACEE;
    }

    • This should just change the links colour on rollover and click.ian

View thread