Page 1 of 1

Re: Modify Search Form

Posted: Sat Sep 02, 2006 12:19 am
by Elijah Lofgren
It looks like you'll have to modify a php file as the template does not seem to be flexible enough for changing the submit button to an image.

1. Open:
modules/Search/action.default.php
2. Find this line:

Code: Select all

$this->smarty->assign('submitbutton', $this->CreateInputSubmit($id, 'submit', $submit));
3. Replace it with something like:

Code: Select all

$this->smarty->assign('submitbutton', $this->CreateInputSubmit($id, 'submit', $submit, '', 'admin/themes/default/images/icons/system/info.gif'));
Hope this helps,

Elijah