Thread Starter
Florian
(@haubnerimmo)
Can you please help me here? How to remove the green checkbox and make it look like a normal checkbox without styling? Thank you
Hi,
Several sources of CSS can apply to the checkboxes (our plugin, other plugins, your theme, browser). You can inspect the element in your browser and see which CSS is applied. Here are some examples to adjust the CSS of our plugin.
Adjust only the color of the (checked) checkbox:
.dae-shortcode-download-wrapper .dae-shortcode-register-form input[type="checkbox"]:checked::before {
color: #000000 !important;
}
Use the browser appearance (the appearance of the checkbox can differ per browser):
.dae-shortcode-download-wrapper .dae-shortcode-register-form input[type="checkbox"] {
-webkit-appearance: checkbox !important;
-moz-appearance: checkbox !important;
appearance: checkbox !important;
}
.dae-shortcode-download-wrapper .dae-shortcode-register-form input[type="checkbox"]:checked::before {
content: none !important;
}
For other CSS on the two mentioned selectors you can apply the same method (use values with !important added).
If you have any more questions, feel free to ask.
Kind regards,
Team Download After Email
Thread Starter
Florian
(@haubnerimmo)
Thank you very much, worked perfect!