MyBB Community Forums

Full Version: Add Search Box like Mybb has..???
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to add a search box like Mybb site has??

[Image: 1zogpbs.jpg]

How can I do this??

Same Box Like mybb..!!
This is the basic code for a search box:

<form method="post" action="search.php">
<input type="hidden" name="action" value="do_search" />
<input type="text" class="textbox" name="keywords" size="13" maxlength="250" />
<input type="submit" class="button" name="submit" value="Search" />
</form>

I have a simple search box , check it www.chkforums.com
but i want to get this shape and look that mybb has..!!
You'll need to style it with CSS.

Check the source code to see how it's done here.
(2010-10-21, 01:46 PM)Alan S. Wrote: [ -> ]This is the basic code for a search box:

<form method="post" action="search.php">
<input type="hidden" name="action" value="do_search" />
<input type="text" class="textbox" name="keywords" size="13" maxlength="250" />
<input type="submit" class="button" name="submit" value="Search" />
</form>

I know this is an old thread, but I just added this before <navigation> and aligned right. However if I click on the button nothing happens. Why is that?

Edit: Never mind I fixed it. Was missing one > after div
Here a more recent tutorial, try it: http://yaldaram.com/thread-1190.html