1. bizzo
  2. General
  3. Wednesday, February 18 2015, 02:39 AM
Hi,
thank you for a great extension.

Im having trouble with some alignment issues... (see screenshot and link)
the issue only happens on the registration page, edit view is fine. thank you for your help.

http://www.lf1m.org/index.php/component/users/?view=registration

also, is there a way to display all groups a user is already a part of? thanks!

Bizzo
Attachments (1)
Accepted Answer
admin Accepted Answer
Admin
Hi,
this is a problem of your template, in file /templates/gamers/css/bootstrap/bootstrap-default.css at line 5094 you have this:
#member-registration input, #member-registration textarea {
width:86%;
}

With this all input have 86% of width, this is wrong because it is not true of the various plugins that can be applied to the form of Registration.

Solutions
There are many solutions to fix, I'll suggest two of these

1) In file /templates/gamers/css/bootstrap/bootstrap-default.css replace line 5094,5095,5096 with this:
#member-registration input[type="text"], #member-registration input[type="email"], #member-registration input[type="password"], #member-registration textarea {
width: 86%;
}


2) add this code in some CSS file
#member-registration input[type="checkbox"], #member-registration input[type="radio"], #member-registration input[type="password"]{
width: auto !important;
}
  1. more than a month ago
  2. General
  3. # Permalink
bizzo Accepted Answer
Pro
Thank you for the quick response.

I put the code from Option 2 into a custom.css file and all is working fine now.
Thanks again!

Bizzo
  1. more than a month ago
  2. General
  3. # 1
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.
Sorry, the discussion is currently locked. You will not be able to post a reply at the moment.