Tagged: 

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #394102

    We tried to switch to Twenty Thirteen theme and it looks fine but when Switching to Enfold the style of Captcha breaks. Please advise.

    Glitch

    Example page

    #394636

    Hey bmccumber!

    Try adding this to your custom CSS.

    #recaptcha_area, #recaptcha_table {
      height: 130px !important;
      overflow: hidden !important;
      width: 318px !important;
    }

    Cheers!
    Elliott

    #394648

    That partially worked. Just the buttons on the right side of the text field still have weird margins

    Sc

    #395255

    Hi!

    Try adding this as well.

    #recaptcha_reload_btn, #recaptcha_switch_audio_btn, #recaptcha_whatsthis_btn {
      display: block !important;
      height: 17px !important;
      overflow: hidden !important;
      top: -2px;
    }
    #recaptcha_switch_audio_btn { top: -5px !important; }
    #recaptcha_whatsthis_btn { top: -7px !important; }
    

    And play around with the top values.

    Regards,
    Elliott

    #395272

    When I align it there’s a gap in the bottom now :(

    Screen

    #395531

    Hi!

    Changing the values in Elliott’s code should lead you to the look you are after.

    Cheers!
    Rikard

    #395865

    Hi Rikard,

    I did change the values and got that white gap on the bottom of 3 buttons. Any ideas?

    Thank you.

    #396326

    Hi!

    Add this:

    a#recaptcha_whatsthis_btn {
    overflow: visible !important;
    }
    
    a#recaptcha_whatsthis_btn:before {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: #810200 !important;
    bottom: -7px;
    position: absolute;
    z-index: 1000;
    }

    Best regards,
    Ismael

    #397634
    This reply has been marked as private.
    #397695
    This reply has been marked as private.
    #398012

    Hi!

    Try to adjust the bottom position of the background patch from -7 to 0 or until it covers the white space.

    Best regards,
    Ismael

    #398443

    Had to change z-index. Here’s the final code that worked for me:

    a#recaptcha_whatsthis_btn:before {
    content: '';
    display: block;
    width: 100px;
    height: 6px;
    background: #810200 !important;
    bottom: -2px;
    position: absolute;
    z-index: 99999;
    }
    #398699

    Hi!

    Thanks for the code and great that you solved your issue.

    Cheers!
    Rikard

Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.