tuanphan Posted August 6 Share Posted August 6 Suppose you have a form with a checkbox like this. You need to make Location field checkboxes side by side. If you can't make it work, you can send link to page where you use Form Block. I can check easier. #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): :nth-child(1) Second field (Email): :nth-child(2) Third field (Subject): :nth-child(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 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment