I want to move the description field to where it is below the label but above the data entry fields. Ides on how to do that?
I want to move the description field to where it is below the label but above the data entry fields. Ides on how to do that?
you can do this with some jQuery added to your page template, or some CSS tweaking.
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('li#field_1_5 .gfield_description').insertAfter($('li#field_1_5 .gfield_label'));
});
</script>
Just replace the field ID's for your form.
or the CSS method...
thanks, attempted both... and both attempts failed... grrr... will keep trying.
If you would like to post a link to your form, I'd be happy to take a look and see if we can get it to work for you. I'm sure it's something minor.
This is the link to the form.
http://whrwa.com/emilycontest/?page_id=3
Sorry I didn't post sooner - family invaded.
oh... and the descriptions for Category Judging Preferences and Judge Matching: Story Aspects need to be moved be to right below the title.
Okay, the easiest and most flexible way to do this is with some jQuery. First of all, remove the CSS/style block you added previously to the page template. Then, put this in the < head> section of your page template (usually page.php)
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function($) {
$('#field_1_15 .gfield_description').insertAfter($('#field_1_15 .gfield_label'));
$('#field_1_11 .gfield_description').insertAfter($('#field_1_11 .gfield_label'));
});
</script>
It worked fine in my test
Also, I noticed you have bullet images showing in your form so you can append this to the end of your theme style sheet and it should make them go away.
.gform_wrapper li, .gform_wrapper form li, .gform_wrapper form ul li { list-style-type:none!important; background-image:none!important}
Let me know how it goes.
Worked out GREAT! THANKS!
Wonderful. Thanks for the update.