You can grab the whole <form> element from Memberlist Search Template and put it into Search Template.
This way you create an independent search form for members and style it individually.
Keep in mind:
- This new <form> must be outside the original <form>
- This form must be pointing to memberlist.php via POST method.
- Implement all neccessary JavaScript files for the username selector - or dismiss the auto-select at all. Then create an own <input name="username" ...>.
You can convert all additional search options into a pre-defined value, e.g.
<input type="hidden" name="sort" value="regdate">
<input type="hidden" name="order" value="ascending">
Good luck!
[ExiTuS]