I have a mvc 3 app that uses Razor.There are several forms on the site where information is requested from the user. The problem is some of these boxes need to be longer than others.. I am lost on how to change the width of specific editorFor boxes using css.. The below box is an example of one of the boxes...
<tr>
<td>@Html.EditorFor(Function(model) model.School_Title)
@Html.ValidationMessageFor(Function(model) model.School_Title)</td>
<td> @Html.EditorFor(Function(model) model.Short_Name)
@Html.ValidationMessageFor(Function(model) model.Short_Name)</td>
</tr>
Any help would be greatly appreciated...