If you need to group fields, here's a couple of functions that will help you out. Would appreciate any feedback.
https://gist.github.com/dabernathy89/5155551
- Daniel
http://www.twitter.com/dabernathy89
If you need to group fields, here's a couple of functions that will help you out. Would appreciate any feedback.
https://gist.github.com/dabernathy89/5155551
- Daniel
http://www.twitter.com/dabernathy89
You are a genius!!
I had to style an employment application. Your function allowed me to group sections together such as Education, References, etc. with some nice margins and lines.
Works perfectly! Thanks for sharing
This is great Daniel! I've been needing this for quite awhile, sure beats trying to manipulate paginated forms. Very nice.
Thanks! This totally made large groups of the same conditional logic much easier.
Hi Guys
Rookie question, but if I use this code, how do I target the CSS to style just the group I have created?
@noworries you would target it just like any other field, by it's field id or the CSS Class Name you assign it. So if your form number is 28 and the 'open field group' is the first field you add to your form then you can target it like so
#field_28_1 {
/* styles go here */
}