JIm,
Your solution shouldn't break anything, but it will show up in your emails notifications, etc. It's probably a better solution to actually use a title for the section, and either show the title with a more prominent bottom border, or even to hide the title and only show a bottom border to achieve the effect.
If you still want to use a title for the section rather than the equal signs, you can title it whatever you like, and then style the bottom border on that element to be darker. It currently has a light, dotted bottom border.
For example, adding this CSS to your theme stylesheet will change the bottom border to a black, dashed line that's more prominent.
.gform_wrapper .gsection {border-bottom:1px dashed #00000 !important;}
That will apply to ALL of the section breaks, and leave the section title visible.
If you only want the line and not the title, and only on that one section divider, something like this will work. ( I viewed the source and found the container ID is "field_8" - that way I can target just that instance)
li#field_8.gsection h2.gsection_title {display:none;}
li#field_8.gsection {border-bottom:1px dashed #000000 !important;}
I copied your markup and did a quick test on my end. You can see it here. Hopefully that will make a little more sense out of the examples.
Posted 15 years ago on Monday November 9, 2009 |
Permalink