ovi wrote:Thanks crazycat.
My intention was to use the hidden Field type to create a title/subtile for my sections within the form.
Only that Field Title I wanted to customize as style.
Your solution is for all titles, using the class. I guess... cause I did not get it working for me.correct. this is exactly what you need.
here:
| Code: |
<tr>
<td align="right" valign="top" class="fieldtitleclass">{fieldtitle}{validationsign}</td>
<td valign="top" class="fieldclass">{field}</td>
<td valign="top" class="fielddescclass">{fielddesc}</td>
</tr>
|
see, there're three different classes for three different elements in this code example. So you can style every element the way you need by writing something like this to your css file:
| Code: |
/*style for field title*/
table.forme td.fieldtitleclass{your_choice_goes_here;}
/*style for field*/
table.forme td.fieldclass{your_choice_goes_here;}
/*style for field description*/
table.forme td.fielddescclass{your_choice_goes_here;}
|
Hope this'll help,
cheers,
Adam