Hi,
Can you please share any screenshot or screen-cast to see what’s actually happening? With the default theme active I am able to see it like this https://prnt.sc/l1f2ty
May be there is default CSS from theme which is creating issue there.
Thanks
http://prntscr.com/l1qi93
I want to remove border shown around password fields and want password field to follow same css as Email ID which is a css for text field. Please guide me which file I need to edit to remove default theme css from this field or if anything I can add in buddyform custom class. Thanks for your help.
Hi,
With the following CSS, you can remove the border :
.bf_field_group.elem-user_pass fieldset {
border: none;
}
and for the element style like email element you have to check there which class is doing that. Because in default theme both the fields look very similar so certainly there must be some theme styling that is getting applied on email box.
One more thing you can do is, increase the width of password fields using this CSS:
input#user_pass {
width: 100% !important;
}
input#user_pass2 {
width: 100% !important;
}
Thanks