Live Example - http://www.drugforums.us/memberlist.php
Personally i think its odd that the member search is on the bottom of the memberlist page, but no worries we can fix that with ease.
Admin CP > Templates > *Your Theme* > Member List > Member List > Full Edit
Ctrl + F for "{footer}" and above you should see "</form>" copy that all the way up until you see "<br style="clear: both;" />" which is right below "{$multipage}" the final outcome should be this C+P
Cut it then paste it below "{$header}". Thats it and i think it makes more sense now .
Any issues please post and help shall come.
Personally i think its odd that the member search is on the bottom of the memberlist page, but no worries we can fix that with ease.
Admin CP > Templates > *Your Theme* > Member List > Member List > Full Edit
Ctrl + F for "{footer}" and above you should see "</form>" copy that all the way up until you see "<br style="clear: both;" />" which is right below "{$multipage}" the final outcome should be this C+P
<br style="clear: both;" />
<br />
<form method="post" action="memberlist.php">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="3">
<div class="float_right">
<strong><a href="memberlist.php?action=search">{$lang->advanced_search}</a></strong>
</div>
<div><strong>{$lang->search_members}</strong></div>
</td>
</tr>
<tr>
<td class="tcat"><strong><label for="username">{$lang->username}</label></strong></td>
<td class="tcat"><strong><label for="website">{$lang->website}</label></strong></td>
<td class="tcat"><strong><label for="sort">{$lang->sort_by}</label></strong></td>
</tr>
<tr>
<td class="trow1" width="33%" style="vertical-align: top;">
{$lang->contains}<br />
<input type="text" class="textbox" name="username" id="username" style="width: 99%; margin-top: 4px;" value="{$search_username}" />
</td>
<td class="trow1" width="33%" style="vertical-align: top;">
{$lang->contains}<br />
<input type="text" class="textbox" name="website" id="website" style="width: 99%; margin-top: 4px;" value="{$search_website}" />
</td>
<td class="trow1" width="33%">
<select name="sort" id="sort" style="width: 99%;">
<option value="username"{$sort_selected['username']}>{$lang->sort_by_username}</option>
<option value="regdate"{$sort_selected['regdate']}>{$lang->sort_by_regdate}</option>
<option value="lastvisit"{$sort_selected['lastvisit']}>{$lang->sort_by_lastvisit}</option>
<option value="postnum"{$sort_selected['postnum']}>{$lang->sort_by_posts}</option>
<option value="referrals"{$sort_selected['referrals']}>{$lang->sort_by_referrals}</options>
</select><br />
<span class="smalltext">
<input type="radio" class="radio" name="order" id="order_asc" value="ascending"{$order_check['ascending']} /> <label for="order_asc">{$lang->order_asc}</label><br />
<input type="radio" class="radio" name="order" id="order_desc" value="descending"{$order_check['descending']} /> <label for="order_desc">{$lang->order_desc}</label>
</span>
</td>
</tr>
</table>
<div align="center"><br /><input type="submit" class="button" name="submit" value="{$lang->search}" /></div>
</form>
Cut it then paste it below "{$header}". Thats it and i think it makes more sense now .
Any issues please post and help shall come.