|
Posted by philiplemon on 01/29/08 19:13
I have this www.dacapoclothingco.com/browse and the search box at the
top the icon to search is beneath the form field but i need to get it
next to the form filed so that it lines up with the rest of the
stuff.
the code i used is
<?php
echo tep_draw_form('quick_find',
tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false),
'get');
echo tep_draw_input_field('keywords', BOX_HEADING_SEARCH, 'size="10"
maxlength="30" style="width: ' . (BOX_WIDTH-30) . 'px"') . ' ' .
tep_hide_session_id();
?>
<INPUT type=hidden value=1 name=search_in_description>
<?php
echo tep_image_submit('button_quick_find.gif', BOX_HEADING_SEARCH);
echo '</form>';
?>
wondering if theres something simple i can add to that to change it
I'm a complete php noob sorry.
[Back to original message]
|