How to change the font size of text_area

hi all,

I have a text_area, and i want make its font size smaller.

<%= form.text_area :myarea, :rows => 20, :cols => 40 %>

how can I do ?

any tips is appreciated.

thanks

Use css and style the textarea with something like

textarea
{
font-size: 8pt;
}

Florian G. wrote:

Use css and style the textarea with something like

textarea
{
font-size: 8pt;
}

it works!

thanks very much ! :slight_smile: