CSS rule hides ACF radio and checkbox inputs
-
These selectors lack specificity and therefore hide all radio and checkbox inputs:
acfblocks.css line 674-677:
ul.acf-radio-list li input[type=”checkbox”],
ul.acf-radio-list li input[type=”radio”],
ul.acf-checkbox-list li input[type=”checkbox”],
ul.acf-checkbox-list li input[type=”radio”] {
display: none;
visibility: hidden;
}This fixes the problem but I’m not sure this was intended:
.acfb_social_networks ul.acf-radio-list li input[type=”checkbox”],
.acfb_social_networks ul.acf-radio-list li input[type=”radio”],
.acfb_social_networks ul.acf-checkbox-list li input[type=”checkbox”],
.acfb_social_networks ul.acf-checkbox-list li input[type=”radio”] {
display: none;
visibility: hidden;
}
- The topic ‘CSS rule hides ACF radio and checkbox inputs’ is closed to new replies.