Center Comment Form Submit Button

Hi, I would like the submit button in the comment form for a blog to be centered. What’s the best/easiest way to do this?
Thanks

Hi There,

Thanks for asking!

Please add this custom CSS to your Dashboard -> X -> Theme Option-> Global CSS and let us know how this goes.

#commentform {
text-align: center;
}

Hope this helps!

Thanks

Thanks! Looks good on bigger devices, but it’s on top of Googe reCaptcha on smaller screens - how do I fix it?

Hi There,

Please update the previous CSS to this:

#commentform {
    text-align: center;
}
.form-submit {
    margin-top: 25px;
}
.g-recaptcha > div {
    width: auto !important;
}

After that adding this custom code under X > Theme Options > JS:

jQuery('.single-post .g-recaptcha').insertBefore(jQuery('.form-submit'));

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.