Support

Account

Home Forums Feature Requests Add vertical/horizontal layout option to Taxonomy field Reply To: Add vertical/horizontal layout option to Taxonomy field

  • 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;
          }
        }
      }
    }