• Resolved hebhansen

    (@hebhansen)


    Hi Turnstile

    Bbpress turnstile settings allows right alignment for the captcha. This works for comments, but not for adding a topic.

    Also the captcha appears to climb on top of other form stuff and not stay with button. I have a poll plugin installed where it’s activation shows between captcha and button, making the submit form confusing and counter logic. See same image above.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter hebhansen

    (@hebhansen)

    Issue #2: Leaving a browser open over night, renders repeatedly like so.

    Thread Starter hebhansen

    (@hebhansen)

    Until fix by plugin this does the trick:

    /* Target add-topic form */
    .bbp-topic-form .cf-turnstile {
    float: right; /* float to the right */
    margin-left: 16px; /* spacing from form fields */
    margin-bottom: 16px; /* spacing below */
    }

    /* Optional: clear float after the captcha to avoid layout issues */
    .bbp-topic-form::after {
    content: "";
    display: block;
    clear: both;
    }

    This targets topic form only. Correct css for plugin to fix and right align all bbpress is:

    .bbp-form .cf-turnstile {
    float: right;
    margin-left: 16px;
    margin-bottom: 16px;
    }

    .bbp-form::after {
    content: "";
    display: block;
    clear: both;
    }

    Can’t wait for the fix…..

    Thanks, I will take a look into this.

Viewing 3 replies - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.