Viewing 1 replies (of 1 total)
  • Hi carlos

    Try this type of code it just a suggestion for change color of button and links on hover if you can give a website link i will give you good suggestion for this problem

    Thanks

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    <html>
    <head>
    <style>
    /* unvisited link */
    a:link {
        color: #000;
        background-color:orange;
        border:1px solid #000;
        text-decoration:none;
        border-radius:3px;
    }
    /* mouse over link */
    a:hover {
        color: #000;
        background-color:green;
    }
    </style>
    </head>
    <body>
    <p>Mouse over and click the link change the button color: <a href="https://www.w3schools.com">w3schools.com</a></p>
    </body>
    </html>
Viewing 1 replies (of 1 total)
  • The topic ‘active color’ is closed to new replies.