susan767:
Thanks for directing me towards the solution. However, I looked into tpl_advanced_search_default.php and the corresponding codes look like this.
<?php echo zen_draw_input_field('keyword', $sData['keyword'], 'onfocus="RemoveFormatString(this, \'' . KEYWORD_FORMAT_STRING . '\')"'); ?>
>
> ```php
<?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
This looks like a more complex issue than I had originally thought. After further searching, I found a solution given by DrByte at http://www.zen-cart.com/forum/showthread.php?t=119652&highlight=zen_draw_input_field
So I added the following to my stylesheet:
input[name='keyword'] {width: 250px;}
input[name='pfrom'] {width: 50px;}
input[name='pto'] {width: 50px;}
Although it worked, it was kind of cheating because the sidebox search box, the size of which I did not want to change, also uses the name 'keyword'. Fortunately, the width of that box was fixed at 120px.
I know it gets the job done, but there's gotta be a more intuitive way of doing it. Anyone?
Susan