With the following code snippet, I want to display a selctor box on the left, and a sector box on the right with the action controls in between the boxes without using tables. Any ideas how to display it correctly? Thanks!
HTML Code:.selectorA, .actions, .selectorB{ width: 200px; float: left} .... <div> <span class="selectorA"> <SELECT NAME="list11" MULTIPLE SIZE=20 onDblClick="moveSelectedOptions(this.form['list11'],this.form['list21'],true)"> <? echo $computedSelections; ?> </SELECT> <span class="actions"> <A HREF="#" onClick="moveSelectedOptions(document.forms[0]['list11'],document.forms[0]['list21'],false);return false;">>></A> <A HREF="#" onClick="moveAllOptions(document.forms[0]['list11'],document.forms[0]['list21'],false); return false;">All >></A> <A HREF="#" onClick="moveSelectedOptions(document.forms[0]['list21'],document.forms[0]['list11'],false); return false;"><<</A> <A HREF="#" onClick="moveAllOptions(document.forms[0]['list21'],document.forms[0]['list11'],false); return false;">All <<</A> <span class="selectorB"> <SELECT NAME="list21" MULTIPLE SIZE=20 onDblClick="moveSelectedOptions(this.form['list21'],this.form['list11'],true)"> </SELECT> </div>





Bookmarks