Quote:
Originally Posted by VIPStephan
You just need to remove display: list-item and width: 300px from span.wpcf7-form-control-wrap input. Or rather, only apply the width to text inputs. You can use the attribute selector ([type=text]) or a specific class selector that is added to these inputs.
|
except he doesn't have control over those because those styles are built into the wordpress contact form 7 plugin. He would need to add styles to his own stylesheet that would override those.
Also, even if he were to remove them... it would not give him a vertical list of radio buttons rather a horizontal list.
The best way to achieve what you are looking to do is use this code in your own CSS stylesheet:
Code:
span.wpcf7-list-item input[type="radio"]{
display:inline;width:auto;
}
span.wpcf7-list-item label{display:block;}
This code has been tested with your layout using the Web Developer Toolbar.