Why can't I seem to align the reCAPTCHA form properly on my registration page? Even though the div
it is within has its text-align
property set to center
, the form still displays on the left side of the page:
However, when I use JavaScript to change its alignment (
document.getElementById("recaptcha_widget_div").align = "right"
), it suddenly aligns correctly (as shown in the screenshot taken from the middle of the page):What could I be doing wrong?
Edit: Here's a link to a fiddle containing the div
and all the CSS used on the page.