Re: Modify Search Form
Posted: Sat Sep 02, 2006 12:19 am
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:
3. Replace it with something like:
Hope this helps,
Elijah
1. Open:
modules/Search/action.default.php
2. Find this line:
Code: Select all
$this->smarty->assign('submitbutton', $this->CreateInputSubmit($id, 'submit', $submit));
Code: Select all
$this->smarty->assign('submitbutton', $this->CreateInputSubmit($id, 'submit', $submit, '', 'admin/themes/default/images/icons/system/info.gif'));Elijah