Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support weblizar_support

    (@weblizar_support)

    hi @mapo85,

    Please add the following CSS code to Custom CSS of plugin (Login Form Setting > Custom CSS)

    This will modify the shadow of the form:

    form#loginform {
       -webkit-box-shadow: 0px 0px 6px 6px rgba(42,166,131,1) !important;
        -moz-box-shadow: 0px 0px 6px 6px rgba(42,166,131,1) !important;
        box-shadow: 0px 0px 6px 6px rgba(42,166,131,1) !important;
    }

    This will remove the shadow from Login Button:

    input#wp-submit{
       -webkit-box-shadow: none !important;
        -moz-box-shadow: none !important;
        box-shadow: none !important;
    }

    Thank you.

    Thread Starter mapo85

    (@mapo85)

    Perfect! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Modify shadow and edge’ is closed to new replies.