MyBB Community Forums
[How To?] Add Search Box like Mybb has..??? - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Community Archive (https://community.mybb.com/forum-106.html)
+--- Forum: Archived Forums (https://community.mybb.com/forum-143.html)
+---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html)
+----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html)
+------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html)
+------ Thread: [How To?] Add Search Box like Mybb has..??? (/thread-80728.html)



Add Search Box like Mybb has..??? - Taim - 2010-10-21

I want to add a search box like Mybb site has??

[Image: 1zogpbs.jpg]

How can I do this??

Same Box Like mybb..!!


RE: Add Search Box like Mybb has..??? - Alan S. - 2010-10-21

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>



RE: Add Search Box like Mybb has..??? - Taim - 2010-10-21


I have a simple search box , check it www.chkforums.com
but i want to get this shape and look that mybb has..!!


RE: Add Search Box like Mybb has..??? - Alan S. - 2010-10-21

You'll need to style it with CSS.

Check the source code to see how it's done here.


RE: Add Search Box like Mybb has..??? - MuslimBB - 2014-01-26

(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


RE: Add Search Box like Mybb has..??? - Destroy666 - 2014-01-26

Here a more recent tutorial, try it: http://yaldaram.com/thread-1190.html