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 <style type="text/css"> .textbox1 {         font-family:verdana;         font-size: large;         font-weight:bold;         text-decoration:underline overline;         background-color:yellow;}

</style>

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 Ivanoff 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 Ivanoff