Forum Moderators: not2easy
+-------+..............+------+
¦ Item1 ¦..............¦``````¦
¦ Item2 ¦ [ > ] [ >> ] ¦``````¦
¦```````¦ [ < ] [ << ] ¦``````¦
¦```````¦..............¦``````¦
+-------+..............+------+
That's a list box on the left, 4 buttons between them, centered vertically, and another list box on the right.
<form action="">
...
<div class="listMover">
<select name="srcList" class="srcList">
<option value="1">Item1</option>
<option value="2">Item2</option>
</select>
<div class="listMoverControls">
<div class="toControls">
<input type="button" name="toSingle" value=">">
<input type="button" name="toAll" value=">>">
</div>
<div class="fromControls">
<input type="button" name="fromSingle" value="<">
<input type="button" name="fromAll" value="<<">
</div>
</div>
<select name="destList" class="destList">
<option value=""></option>
</select>
</div>
...
</form>