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!
FEU/Self Registration Module: change textarea default columns
-
- Forum Members
- Posts: 20
- Joined: Tue May 25, 2010 12:43 am
Re: FEU/Self Registration Module: change textarea default columns
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.
- 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.
-
- Forum Members
- Posts: 20
- Joined: Tue May 25, 2010 12:43 am
[Solved] FEU/Self Registration Module: change textarea default columns
Thanks Marek, I just too straight forward think, didn't think of the style sheet, thank you so much!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.
