Home › Forums › ACF PRO › Category Select List – 2 Columns › Reply To: Category Select List – 2 Columns
Add some custom CSS to the admin for that post type and set the LI elements to float left and 50% width.
add_action{'admin_head', 'my_customs_admin_css');
function my_customs_admin_css() {
?>
<style type="text/css">
/* "test field name" is the name of the field I used for this */
div[data-name="test field name"] ul.acf-checkbox-list li {
float: left;
width: 50%;
}
</style>
<?php
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.