Survey Form CSS help needed

I have completed the form and it passed all tests. My question is, in the section with the radio buttons and section with check boxes how do I code the CSS so that they are on the same line as the text? Any suggestions or help is appreciated. https://codepen.io/cwabtech/pen/jOpjBEG

we can make suggestions but it is better to share your code in a codepen so we can see what works best “live”.

I attached the codepen link.

perfect.

here’s something you can try:
1- nest the input element inside the label for eg.
<label>Something: <input></label>
This will allow you to target the label element and include the input within the layout setup.

2- change the width setting for the input to something less than 100%. For eg. 80%
3- add a new css selector for label and set the display to inline-block

Give those a try.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.