Dear ACF team,
I noticed that I have the option to select a horizontal layout for Checkbox fields, which is great. However what I found a little confusing is that the checkbox appearance option for the Taxonomy field does not have this option.
It’d be great to see the vertical vs horizontal option to all checkbox/radio type inputs.
Thanks so much,
Noƫlle
Just came here to say the same thing!
Here’s a quick bit of SASS code to make it behave horizontally:
.acf-taxonomy-field{
ul.acf-checkbox-list{
&.acf-bl {
> li {
float: left;
margin-right: 20px;
}
}
}
}