Quote:
Originally Posted by amcc
How can i put a magnifying glass image into the search box form field, so that it is either:
fixed permanently to the left; or
disappears when you put the mouse curser in the box to start typing
Cheers
|
For the text of this is done so (open file skin1/customer/search.tpl):
Find this line and change it:
PHP Code:
<td valign="middle"><input type="text" name="posted_data[substring]" size="16" value="{$search_prefilled.substring|escape}" /></td>
On this line:
PHP Code:
<td><input type="text" name="posted_data[substring]" onFocus="this.value = (this.value == 'Enter Keyword') ? '' : this.value;" onBlur="this.value = (this.value == '') ? 'Enter Keyword' : this.value;" size="37" value="Enter Keyword" /> </td>