Css to text_field

Hello,
I know it is very simple but please can anyone tell me how do i add a
css style to a text box…

This is the css style

.textbox1 { font-family:verdana; font-size: large; font-weight:bold; text-decoration:underline overline; background-color:yellow;}

and below is the text_field to which textbox1 class is to be applied.
<%=org_form.text_field(“org_name”,:size=>"124)%>
Thank you.

<%=org_form.text_field(“org_name”,:size=>"124, :class => 'textbox1 ')
%>

You can use css to set the width too.

John I

John I. wrote:

<%=org_form.text_field(“org_name”,:size=>"124, :class => 'textbox1 ')
%>

You can use css to set the width too.

John I

Thank you.It works

glad i could help
thanks

John I.