I found this code in another post on the board, which moves the descriptions above the field for all field types:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('.gfield_description').each(function(i,e){
fielddesc = jQuery('<div>').append(jQuery(e).clone()).remove().html();
jQuery(e).siblings('label.gfield_label').after(fielddesc);
jQuery(e).remove();
});
});
</script>
I need to do this but for ONLY the checkbox field type.
Is this possible?
Thanks!