MyBB Community Forums

Full Version: Menu items in Center & Search as a BOX
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
1...How to put menu items like portal, memebrs list, follower list, help, etc...in center below forum logo.
i try to add align="center" in header template but not successful.

2....How to make SEARCH As a Box rather than text...i want to put it also below menu items in center.

see screenshot.

thanks.
Rep+ will added.
1) You've to use <div> tag for align="center" , like this;
<div align="center">MENU ITEMS GOES HERE</div>

2) Use the following code;
<form method="post" action="search.php" style="margin: 1px;"> 
        <input type="text" placeholder="Search..." name="keywords" size="30" style="width: 150px; height: 18px;" autocomplete="off"/>
	<input type="hidden" name="action" value="do_search" /><input type="hidden" name="postthread" value="1" checked="checked" /> 
	<input type="hidden" name="showresults" value="threads" checked="checked" /> 
</form>