Hi there,
I'm not sure where to ask my question. It could be a styling or a coding issue. I'm using the formbuilder module and I don't know how to style a multiple textfield. Here is the problem:
Link: http://bit.ly/crmTTe
When adding a field with the [ + ] button, the second field pops up behind the first one. It should be underneath on the right side of the column. Where can I change the behaviour of the multiple text fields?
Using:
CMSMS v1.8.2
Formbuilder v0.6.4
CGExtensions v1.21
[SOLVED] Formbuilder question - Style multiple textfields
[SOLVED] Formbuilder question - Style multiple textfields
Last edited by drwatson on Sat Nov 20, 2010 12:06 am, edited 1 time in total.
Re: Formbuilder question - Style multiple textfields
In formbuilder you can add class name for this field (will be div with class for all multiple textfields).
and you can in template add classes for label, text, submit input types.
somthing like:
and you can in template add classes for label, text, submit input types.
somthing like:
Code: Select all
<span class="t">{$entry->input[numloop]->input}</span>
Re: Formbuilder question - Style multiple textfields
Great, problem solved. Thanks for the reply!