How to remove the checkbox in the productlist?
-
LillebergenAsked on August 31, 2020 at 08:49 AM
How to remove the checkbox in the productlist (the one in front of the image)? This code does nothing :( I'm editing the "Pizza order form".
.form-product-item input[type="checkbox"] {
display: none;
}
This is a re-post of a comment on How to Inject Custom CSS Codes
-
BJoannaAnswered on August 31, 2020 at 10:09 AM
I cannot find the "Pizza order form" on your account. Please provide us the form URL.
-
LillebergenAnswered on August 31, 2020 at 10:11 AM
I found the correct code. It is:
.form-product-item .form-checkbox {
display: none;
}
Thanks for your quick reply :)