• Resolved sheido

    (@sheido)


    Hello,
    I have an issue with checkbox that do not appear on one page (it’s ok on the checkout page but not on the subscription page). I have tried to solve by using CSS like 2 other resolved topics in the thread but it doesn’t work for me. I use DIVI and body commerce for this page, I tried to put CSS on the section (but errors on the syntax) and on the theme CSS but not working. Thank you very much for your help.

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Contributor Lap

    (@lapzor)

    Please try

    .mc4wp-checkbox-wp-registration-form input { appearance: revert; }

    Hope that helps. If you have any questions, please let me know!

    Thread Starter sheido

    (@sheido)

    Thank you very much for your quick answer. Where should I put this code? I tried in the General CSS of WP but not working and in the DIVI module but errors (« expected RBRACE » and « Unexpected token ») but I’m not practicing code so maybe I missed something…
    Thanks for your help

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hey @sheido,

    That code should work in general CSS of WP provided in the theme. If not, you can use the following plugin:
    https://ww.wp.xz.cn/plugins/simple-custom-css/

    Thread Starter sheido

    (@sheido)

    Thanks, I tried with simple custom CSS, when I copy:

    .mc4wp-checkbox-wp-registration-form input { appearance: revert; }

    but it returns an error message:
    Expected (none | auto) but found ‘revert’.

    Plugin Contributor Lap

    (@lapzor)

    you could try

    .mc4wp-checkbox-wp-registration-form input { appearance: checkbox !important; }

    Thread Starter sheido

    (@sheido)

    Thank you very much. It works well on Chrome but not on Safari, that’s weird

    Plugin Contributor Harish Chouhan

    (@hchouhan)

    Hey @sheido,

    Please replace the earlier code with the one below.

    .mc4wp-checkbox-wp-registration-form input {
    appearance: checkbox!important;
    -webkit-appearance: checkbox !important;
    }

    The “appearance” property is still not supported in Safari so the additional property is required.

    Thread Starter sheido

    (@sheido)

    Thank you very much for your quick answer, it’s ok now 🙂

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

The topic ‘Checkbox do not appear’ is closed to new replies.