Password submit button – colour change

  • Unknown's avatar

    stann.uk/client-login

    All I want is to have the ‘enter’ box blue, the same color as when I hover over it.

    An hour on Google and nothing!!!

    Help!!!!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hello @incellp,
    Use this CSS code to:

    i. change the background color of the enter button to blue

    input[type="submit"] {
        background: #1b408e;
        color: #ffffff;
    }

    ii. keep the blue background when hovered

    input[type="submit"]:hover {
        background: #1b408e;
        color: #ffffff;
    }

    OPTIONAL:
    iii. keep the blue background when pressed

    input[type="submit"]:active {
        background: #1b408e;
        color: #ffffff;
    }

    Hope this helps 🙂

  • The topic ‘Password submit button – colour change’ is closed to new replies.