Change width of text field on Quick Search panel
To change width of text field on Quick Search panel use the following code in Javascript OnLoad event.
Note: Change the values listed in red to match your specific needs.
$.each($("input,select"),function(i,e){ var field="value_Make_"; if (e.name.substring(0, field.length) == field) { $(this).width(150); return false;
} });
See also