Quote Originally Posted by kuroi View Post
Not really understanding what you mean by the search window. Normally the advanced search appears on a Zen Cart page like any other page and takes up the space in the center column, do you have your site arranged differently? A link would be helpful.

There are two ways to change the field size. You can either add IDs or classes to the relevant fields in the tpl_advanced_search_default.php template and then add width:nnn stles for those IDs or classes in your stylesheet, or you can add size attributes directly to the input fields in the template (e.g. <input type="text" name="pfrom" /> becomes <input type="text" name="pfrom" size="5" />).
Thanks for directing me towards the solution. However, I looked into tpl_advanced_search_default.php and the corresponding codes look like this.

PHP Code:
<?php echo zen_draw_input_field('keyword'$sData['keyword'], 'onfocus="RemoveFormatString(this, \'' KEYWORD_FORMAT_STRING '\')"'); ?>
PHP Code:
<?php echo zen_draw_input_field('pfrom'$sData['pfrom']); ?>
All I want to do is simply adjust the physical length of the input field shown on the browser.

Thanks,

Susan