• Resolved c3nt4ur

    (@c3nt4ur)


    hi, I’ve noticed that under settings/white label/login, custom css box is not working.

    e.g. I want to change background color of the login fields.
    before
    .login form .input, .login form input[type=checkbox], .login input[type=text] {
    background: #fbfbfb;
    }

    after
    .login form .input, .login form input[type=checkbox], .login input[type=text] {
    background: #1f1f1f;
    }

    After saving changes and inspecting the style my entry has been crossed, old entry has been applied (from different css file). Importancy is not solving the issue.

    Any suggestions regarding this matter?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @c3nt4ur ,

    I’ve just tried your code and added !important which works for me. Below is my exact CSS.

    
    .login form .input, .login form input[type=checkbox], .login input[type=text] {
    background: #1f1f1f !important;
    }
    
    Thread Starter c3nt4ur

    (@c3nt4ur)

    Hi,

    It seems everything is working just fine. I’m losing my mind over here.

    Off topic: Could you let me know how to change the color of check mark? Not the background, but the check mark itself.

    Anyway, everything is working just fine with plugin. Tnx.

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

The topic ‘Login Custom CSS’ is closed to new replies.