I've made some progress...
In the file 'tpl_search_header.php' I am able to manipulate the content within the search-header bar, but I cannot figure out how to format my code so that custom HTML is entered into the search-header bar.
Here is all of the code:
HTML Code:
$content = "";
$content .= zen_draw_form('quick_find_header', 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();
$content .= " <div class=\"search\">\n";
$content .= " <div class=\"search-input\">\n";
$content .= zen_draw_input_field('keyword', '', 'class="inputbox" 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 . '\';"');
$content .= " </div>\n";
$content .= " <div class=\"search-button\">\n";
$content .= zen_image_submit('searchButton.gif',HEADER_SEARCH_BUTTON,'','button');
$content .= " </div>\n";
$content .= " </div>\n";
$content .= "</form>";
echo $content;
The bit that I need to edit is the first line:
HTML Code:
$content = "";
Now...
If I type simple text here, it shows up, but I need to align the text, add an image link, assign a style to the text, etc.
Any suggestions?