Just add this code into the page where you want the search bar to be. Be sure to use the “Text” tab of the editor instead of the “Visual”. Also, be sure to replace “mydomain.com” with your actual domain.
<form class="searchform " method="get" action="http://mydomain.com/"> <input class="searchfield" name="s" value="Search" onfocus="if (this.value == 'Search') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search';}" type="text"/> <input class="searchsubmit" value="" name="searchsubmit" type="submit"/>
Leave a Reply