Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Libin

    (@libinvbabu)

    Definitely I will give this option in next version. For the time being you can apply the below code to your style.css

    .login form {
    moz-box-shadow: rgba(255, 0, 0, 0.7) 0 4px 10px -1px;
    -webkit-box-shadow: rgba(255, 0, 0, 0.7) 0 4px 10px -1px;
    box-shadow: rgba(255, 0, 0, 0.7) 0 4px 10px -1px !important;
    }

    Make sure to change the rgba color to your own.

    If you completely needs to disable the shadow, apply the below css.

    .login form {
    moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none !important;
    }
    Thread Starter benlawsonphotography

    (@benlawsonphotography)

    That fix won’t work, because the only CSS added to the page (besides the styles written by the Erident code) are the wp-admin.css and the colors-fresh.css, both from the admin folder. None of the theme CSS will ever be loaded.

    Plugin Contributor Libin

    (@libinvbabu)

    Hey, I had added an option for Enable/Disable shadow for the Login Form. Also you can customize the shadow color.

    Just update the plugin. Thats all.

    Thread Starter benlawsonphotography

    (@benlawsonphotography)

    Thanks for adding the form shadow options. However, the form shadow color does not get saved. The yes/no does, but not the color.

    Thanks again!

    Plugin Contributor Libin

    (@libinvbabu)

    Hey, Sorry for the delay.
    Do this, just enter any color in hex-code, say #C8C8C8 in the Form shadow color and press Save Changes. Then it will works perfectly.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Erident Custom Login and Dashboard] White drop shadow will not go away!’ is closed to new replies.