Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
656 views
in Q2A Core by
edited by

@gidgreen:

Please add a CSS class name to qa-app-captcha.php, function qa_set_up_captcha_field(), line 88:

'label' => qa_lang_html('misc/captcha_label'),

to something like:

'label' => '<span class="captcha-label">'.qa_lang_html('misc/captcha_label').'</span>',


Reason: It is nearly impossible to target the rows. Okay, you could use nth-child selector but as soon as you add a row, it gets messed up. Easy solution: add a class name.

Thanks, Kai

Q2A version: 1.6.2

Please log in or register to answer this question.

...