• Resolved alexfok007

    (@alexfok007)


    with the source code front.css it declared with !important .

    It make unable change the login style of height.

    input#user_login, input#user_pass {
    height: auto!important;
    }

    #mc-input, #user_email, #user_login {
    height: auto!important;
    }

    Suggest remove !important

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Heateor Support

    (@heateor)

    You can use following CSS to override the height of these fields:

    form#loginform input#user_login, form#loginform input#user_pass{
        height: 20px!important;
    }

    Similarly, you can override the CSS of other fields by using the ID/class of their parent element with their class/ID in the CSS.

    Thread Starter alexfok007

    (@alexfok007)

    Sorry for my late to reply. it is work.

    thanks.

    Plugin Author Heateor Support

    (@heateor)

    Okay. No problem.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘CSS was overrided’ is closed to new replies.