MyBB Community Forums

Full Version: Quick search
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add a 'quick search' button and textbox? somewhere?
Something like this:
		<form action="search.php" method="post">
			<input type="hidden" name="action" value="do_search" />
			<input type="text" name="keywords" value="Enter Keywords" onfocus="if(this.value == 'Enter Keywords') { this.value = ''; }" onblur="if(this.value=='') { this.value='Enter Keywords'; }" class="textbox" size="25" />
			<input type="submit" value="Search" />
		</form>
Smile
Thanks Smile
thanks a lot Smile