Hey, is there any way i can make the first column of a table stay static, and make the rest horizontally scrollable. if that makes it any clearer, Many Thanks Mike Inbreco Web Solutions
Hi Mike Try using Div layers instead like this HTML Code <div id="div1">div1</div> <div id="div2">div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test div2 test </div> Code (markup): CSS #div1 { height: 400px; width: 200px; float: left; } #div2 { height: 400px; float: left; overflow: auto; visibility: visible; width: 400px; white-space: nowrap; } Code (markup):