Under Event Category, select All-Star Cheer. Under Cheer & Stunt Group Options choose a number for each Partner Stunt and Group Stunt Groups. Fields will appears for the user to input their group member names. The headers for these fields look perfect in IE 8 but are misaligned in Firefox 5. Any ideas as to why and how I can fix it?
Hello, Your issue stems from the differences in browser compatibility. Here are two options for you, I would suggest using the second (label on top), as it is more user friendly and is not as susceptible to more browser compatibility issues. http://screencast.com/t/SxUH1eN4JH
You didn't quite get to the fields I was referring to. The text fields appear after selecting 1-5 for either/both Partner Stunt and Group Stunt groups. The text fields (not the drop down fields) have the headers I am having issues with, not the ones you demo in your screencast there. Thanks.
It looks like a new update in the webkit rendering engine has changed how the block / table-row layout is handled in CSS. Our setup for multiply conditional rows in tables is a slight hack to work with older copies of IE, and it looks like this update broke it a little. Note that this issue doesn't apply to non-conditional table rows ... those should still be fine.
A per form fix is pretty easy. Just append:
<style> .wForm form tr[class*='onstate'] { display: table-row !important; } </style>
to your custom code block for your form. This forces the proper display layout to be set for displayed multiplely conditional rows in modern browsers, while the older browsers should ignore it safely ( since they don't support the CSS-L3 selector '*=' ). I've added this to your form and it's working for me, but give it a whirl yourself. Note that if you've copied and pasted your form anywhere, you'll need to do it again to get the updated custom code.
If everything is working ok for you now, please delete the 'support test' form in your account and give us an update here.
That CSS worked like a charm, thank you. Note that when I embed the form onto my own website page the code does not take affect until I add that CSS to my site's custom CSS template (being on the form page itself does not do the trick). Thanks again, I will delete the support test you created on my account.