• Hi ADM, First off, your plugin is awesome. It’s exactly what I needed. You’ve boiled down changing the WP Login with a simple interface with the core elements.

    Thanks so much. Including the CSS Entry Box was pure genius.

    Now, I’am having just a little bit of an issue with styling the Background of the Username and Password Fields.

    I have been able to style the border of these fields but for some reason the Background remains yellow no matter what I’ve tried.

    Here’s the CSS I’ve used:

    .login input[type="text"]{
    background-color:rgba(90,90,90,.6)!important;
    border-color:#33d42a;
    }
    
    .login input[type="password"]{
    background-color:rgba(0,0,0,.6);
    border-color:#33d42a;
    }

    I’ve also tried using more specific selectors like this:

    body.login div#login form#loginform input {}
    body.login div#login form#loginform input#user_login {}
    body.login div#login form#loginform input#user_pass {}

    Perhaps, something else is going on that you may know about.

    Hope your able to advise me on this.

    Thanks

    PS I’ll give a 5 star review once this issue is resolved.

    http://wordpress.org/plugins/customize-login-image/

Viewing 1 replies (of 1 total)
  • Plugin Author apasionados

    (@apasionados)

    Hi there,

    Sorry for our late reply, but we have had some problems with receiving the notifications of publications made in the support area of the plugin.

    For us the following CSS is working correctly:

    .login form .input, .login input[type=text] {
    background-color:rgba(90,90,90,.6)!important;
    border-color:#33d42a;
    }
    .login input[type="password"]{
    background-color:rgba(0,0,0,.6) !important;
    border-color:#33d42a;
    }

    We hope this was usefull for you.

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘CSS Styling Not Sticking — Advice Needed’ is closed to new replies.