View Single Post
  #6  
Old 04-14-2008, 06:05 AM
  Yurij's Avatar 
Yurij Yurij is offline
Banned
 

X-Adept
  
Join Date: Jan 2008
Posts: 486
 

Default Re: image in search box form field

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
Reply With Quote