• Resolved generosus

    (@generosus)


    Hi @weblizar,

    Your plugin does not include an option to change the button color on hover.

    We have managed to change the button color on hover for the Register and Lost Your Password buttons using the CSS codes provided below. However, we cannot change the button color on hover for the Log In button. It appears to be locked by your plugin code using !important. Can you provide the CSS code for it when you reply to this topic?

    Thank you!

    ———————-

    Change Register Button Color on Hover:

    .wp-core-ui .button.button-large:hover {
        background-color: #707070!important;
    }

    Change Lost Your Password (Password Reset) Button Color on Hover:

    .login .reset-pass-submit .button:hover {
        background-color: #707070!important;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello @generosus,

    Thanks for reaching out.
    You can add you custom css code on form setting custom css code for button hover color change.

    Best Regards
    weblizar

    Thread Starter generosus

    (@generosus)

    Hi @weblizar,

    Yes, thanks. We just found the proper selector to do this. Here’s the CSS code:

    .login #nav a:hover {
        color: #707070!important;
    }

    Note: The above only worked after updating your plugin to V3.3.5 (released today).

    I still believe (since your plugin has many settings options), you should consider adding a few more settings to cover the above.

    Cheers!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Feature Request | Change Button Color on Hover’ is closed to new replies.