| View previous topic :: View next topic |
| Author |
Message |
getresults
Joined: 12 Oct 2005 Posts: 16
|
Posted: Wed Oct 12, 2005 6:05 am Post subject: How do I adjust the FieldLabel Column width? |
|
|
I want to adjust the field label column width to make it wider.
It doesn't appear to be defined in the CSS files - is it hard coded into the FORMgen / TableHelpers classes?
I'd appreciate a suggestion for where I can set the default width for the time being.
In the next version of FORMgen it would be great to be able to set the column width for the field label.
Thanks! |
|
| Back to top |
|
 |
formfields
Joined: 01 Aug 2005 Posts: 465
|
Posted: Fri Oct 14, 2005 2:18 am Post subject: |
|
|
This width is not hardcoded. You can change to say 300px by inserting the following CSS in your style tag:
| Code: |
label.isValid, label.notValid {
width: 300px;
}
|
|
|
| Back to top |
|
 |
|