• style-register.php lines 51-54 are missing the .reg-form-group class tag, and conflict with other plugins

    Current code:
    /* Makes reg_forms fields.Sets size and field alignment.*/
    .reg-form-group > input[type=text],
    input[type=email],
    input[type=password],
    input[type=url],
    input[type=tel]
    {
    width:100% !important;
    padding: 5px !important;
    border:1px solid #CCCCCC !important;
    margin-top:5px !important;
    }

    Probably should be?:
    /* Makes reg_forms fields.Sets size and field alignment.*/
    .reg-form-group > input[type=text],
    .reg-form-group > input[type=email],
    .reg-form-group > input[type=password],
    .reg-form-group > input[type=url],
    .reg-form-group > input[type=tel]
    {
    width:100% !important;
    padding: 5px !important;
    border:1px solid #CCCCCC !important;
    margin-top:5px !important;
    }

Viewing 1 replies (of 1 total)
  • Plugin Author aviplugins.com

    (@avimegladon)

    I think both will do the same work.

    If you get CSS conflict with another plugin please update the CSS as you want.

Viewing 1 replies (of 1 total)
  • The topic ‘CSS Conflicts with other plugins’ is closed to new replies.