Captcha layout issue
Posted: 06 Jun 2024, 21:57
Hi,
I used Phoca Guestbook version 4.0.3 with the EasyCalc captcha and it looks like this:
https://imgur.com/a/lOevYMH
However, after upgrading to version 5.0.0 (still on Joomla 4) the text and the input field are reversed in order:
https://imgur.com/1FQIZke
I do notice that the challenge (Solve the equation...) is in a separate DIV now.
Which file do I have to edit to change the order (description/challenge first, input field second)?
I haven't found it yet in the template files, neither does it seem t be a css stylesheet issue.
Any help is greatly appreciated!
I used Phoca Guestbook version 4.0.3 with the EasyCalc captcha and it looks like this:
https://imgur.com/a/lOevYMH
Code: Select all
<div class="controls input-prepend input-append input-group">
<b>Solve the equation: </b>10 plus 7 equals
<input
type="text"
name="jform[captcha]"
id="jform_guestbook_captcha"
value=""
class="form-control input-sm required" aria-describedby="jform_guestbook_captcha-desc" required>
<br/>
</div>
https://imgur.com/1FQIZke
Code: Select all
<div class="controls input-group">
<input type="text" name="jform[captcha]" id="jform_guestbook_captcha" value="" class="form-control input-sm required" aria-describedby="jform_guestbook_captcha-desc" required="">
</div>
<div><b>Solve the equation: </b>13 plus 8 equals <br>
</div>
Which file do I have to edit to change the order (description/challenge first, input field second)?
I haven't found it yet in the template files, neither does it seem t be a css stylesheet issue.
Any help is greatly appreciated!