Hello Fellow Zeners... Can anyone assist me with this. I want to move the Search button in the header So that its' beside the search field rather then below. I been struggling with this and basically I coplied the code from sidebox search and modified it a little. I want to increase the search filed as well and I'v changed every number in the file and it does nothing..
Reason being is Eventually I want to move it down to the bluish/grey area...(I think its the navMainWrapper div)...hard to explain so I've attached images.
Take a look www.fashionfavourites.com
Many thankx...Maybe someday I'll be able to help other stuggling new Zenners.
p.s here is my tpl_search_header.php
=================
$content = "";
$content .= zen_draw_form('quick_find', zen_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false), 'get');
$content .= zen_draw_hidden_field('main_page',FILENAME_ADVANCED_SEARCH_RESULT);
$content .= zen_draw_hidden_field('search_in_description', '1') . zen_hide_session_id();
if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes') {
$content .= zen_draw_input_field('keyword', '', 'size="18" maxlength="100" style="width: ' . ($column_width-30) . 'px"') . '<br />' . zen_image_submit (BUTTON_IMAGE_SEARCH,HEADER_SEARCH_BUTTON);
} else {
$content .= zen_draw_input_field('keyword', '', 'size="18" maxlength="100" style="width: ' . ($column_width-30) . 'px" value="' . HEADER_SEARCH_DEFAULT_TEXT . '" onfocus="if (this.value == \'' . HEADER_SEARCH_DEFAULT_TEXT . '\') this.value = \'\';" onblur="if (this.value == \'\') this.value = \'' . HEADER_SEARCH_DEFAULT_TEXT . '\';"') . '<br /><input type="submit" value="' . HEADER_SEARCH_BUTTON . '" style="width: 50px" />';
}
$content .= "</form>";
?>
==========================






