This should be so simple, but it is driving me nuts. I want to change the size of the 'manufacturers' drop down from the default (3) to 1.
Could someone point me in the right direction? I have already spent a lot of time, hard coded 1, only to find that it was pre-filling the value from elsewhere.
function zen_draw_pull_down_menu($name, $values, $default = '', $parameters = '', $required = false) {
$field = '<select size="1" name="' . zen_output_string($name) . '"';
if (zen_not_null($parameters)) $field .= ' ' . $parameters;
$field .= '>' . "\n";
Thanks much.



