Hi everyone,
I created a short contact form for a website I'm working on and the ReCaptcha is displaying on top of the form. I can't get it to move down and I don't know what I'm doing wrong... Can anyone help?
Jose
I created a short contact form for a website I'm working on and the ReCaptcha is displaying on top of the form. I can't get it to move down and I don't know what I'm doing wrong... Can anyone help?
Jose
Hi Jose,
The culprit is the following rules in /templates/rt_camber_j15/css/joomla.css:
You'll have to override these using custom css with the !important keyword. This should be a good start.
/Fredrik
The culprit is the following rules in /templates/rt_camber_j15/css/joomla.css:
#recaptcha_widget_div {
position: absolute;
top: -140px;
}
You'll have to override these using custom css with the !important keyword. This should be a good start.
#recaptcha_widget_div {
position: static !important;
top: 0 !important;
}
/Fredrik
This topic is locked and no more replies can be posted.