Search Resolved
Maybe not the best solution, but I got something to work.
In sidebar.php of theme.
Find: <div id=”sidebar”> (It is Line 1)
Below add:
<b>Name-Your-Search</b>
<!– begin search –>
<div class=”first box”>
<form method=”get” action=”<?php bloginfo(‘home’); ?>/”>
<input type=”text” onfocus=”if (this.value == ‘Search’) {this.value = ”;}” onblur=”if (this.value == ”) {this.value = ‘Search’;}” value=”” name=”s” />
<button type=”submit”>Name-Your-Button</button>
</form>
</div>
<!– end search –>