Author Topic: Ajax register - No room for questions in the "Question and Answer" captcha feild  (Read 567 times)

samdyer

  • Newbie
  • *
  • Posts: 2
    • View Profile
Everything is working great, except that when using the "Question and Answer" captcha option.  Once active, the questions break after the first couple words onto the next line in an unreadable manner.

I'm guessing this is a template issue, but I'm not sure how to fix it?  :-[

You can see the problem at:
http://www.softwarefordentists.com/index.php?option=com_user&task=register&Itemid=75

Thanks.

Saka

  • Administrator
  • Hero Member
  • *****
  • Posts: 2,495
    • View Profile
    • Sakic.Net
You can increase the label width in components/com_ajaxregister/assets/css/validate.css
Code: [Select]
div.ar_left {
width: 130px;
height: 42px;
float: left;
}

But as your text will probably still be too long I suggest you also decrease the font size for this particular label. Add something like this:
Code: [Select]
label#answermsg {
font-size: 8px;
}

samdyer

  • Newbie
  • *
  • Posts: 2
    • View Profile
Thank you this is very helpful! :)