I'm having issues getting my checkbox label to appear beside the checkbox. It keeps appearing below it. Any suggestions?
http://www.shizzledizzlemagic.com/school-assembly-programs/post-assembly-satisfaction-checkup/
I'm having issues getting my checkbox label to appear beside the checkbox. It keeps appearing below it. Any suggestions?
http://www.shizzledizzlemagic.com/school-assembly-programs/post-assembly-satisfaction-checkup/
The problem is being caused by the width you set on the following css rule you placed in your themes style.css
[css]
.gravityform-singlecol input, .gravityform-singlecol textarea {
width: 600px;
border-width: 2px;
border-color: #cccccc;
border-style: solid;
margin-bottom: 20px;
}
You need to modify that rule so it is more targeted on only the text inputs by modifying it to something like this
[css]
.gravityform-singlecol input[type="text"], .gravityform-singlecol textarea {
That did it! Thanks... I wasn't thinking about the fact that the width would apply to the checkboxes too... Doh!
Thanks for wading through my um... "interesting" css code... ;-)
No problem, I used google chromes developer tools, so no wading was necessary. Click on an object on the page such as your checkboxes and the styles panel shows you all the css rules that are controlling that objects appearance. It's much quicker than manually searching through css files and you can test out live css changes without it affecting the actual stylesheet.