CSS Conflicts with other plugins
-
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;
}
- The topic ‘CSS Conflicts with other plugins’ is closed to new replies.