Suppose you have a form with a checkbox like this. You need to make Location field checkboxes side by side

#1. First, use below tool to find the ID of the Form Block. In my example, we will have:
- #block-yui_3_17_2_1_1722761113944_3710

#2. Next, you find to know this.
- First field (Name): 1
- Second field (Email): 2
- Third field (Subject): 3
- …..

#3. Use this code to Custom CSS box
#block-yui_3_17_2_1_1722761113944_3710 {
fieldset.checkbox:nth-child(4) {
display: block !important;
}
fieldset.checkbox:nth-child(4) .option {
float: left !important;
width: 45% !important;
clear: none !important;
margin-bottom: 10px;
}}
#4. Result

