Page 1 of 1

FEU/Self Registration Module: change textarea default columns

Posted: Wed Jun 09, 2010 8:11 pm
by cacharopnet
Hi,
I have used FEU to create user properties, one field is textarea but doesn't have option to set the cols and rows of it. Then when I use Self Registration Module to allow user register, I found the textarea cols and rows are default to be cols="80" rows="15, which are way too bigger than what I want, my question is, is there anyway I can change it to the size I need? Thanks a lot for any help!

Re: FEU/Self Registration Module: change textarea default columns

Posted: Wed Jun 09, 2010 10:53 pm
by maranc
you can set width and height with css styleshet:

- for all textarea (FEU, Self Registration, Formbuilder) set in your default stylesheet:

textarea {
width: xx;
height: yy;
}

where xx or yy you can set in px, em or percent.

If you want - you can set others like: color, border, background etc.

If I know good, in FEU isn't possible set directly class for textarea, the same is in registration template in SelfRegistration.

Best regards,
Marek A.

[Solved] FEU/Self Registration Module: change textarea default columns

Posted: Wed Jun 09, 2010 11:39 pm
by cacharopnet
maranc wrote: you can set width and height with css styleshet:

- for all textarea (FEU, Self Registration, Formbuilder) set in your default stylesheet:

textarea {
width: xx;
height: yy;
}

where xx or yy you can set in px, em or percent.

If you want - you can set others like: color, border, background etc.

If I know good, in FEU isn't possible set directly class for textarea, the same is in registration template in SelfRegistration.

Best regards,
Marek A.

Thanks Marek, I just too straight forward think, didn't think of the style sheet, thank you so much! ;)