Closed (won't fix)
Project:
Compact Forms
Version:
6.x-1.2
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
1 Feb 2008 at 07:49 UTC
Updated:
26 Nov 2010 at 09:44 UTC
Awesome module!
I'd love an option to use field descriptions instead of the labels - Descriptions tend to be more... descriptive. And there is often plenty of space in the field!
Many thanks in advance!
A>
Comments
Comment #1
sunSounds more like a JavaScript ToolTip feature to me. You'll find plenty of implementations on drupal.org and also in the wild.
Comment #2
tommeir commentedreplace code @ line 13 of js file with this:
$(this).addClass('compact-form').find('.description').each(function () {
var $label = $(this);
var $field = $(this).parent().children('input');
woked for me :)