
My Art, Design, Graphic, Visual FX, Software, and General Stuff blog. :)
Do a 2 Column CSS layout with scroll bars.
It doesn't flow from column to column but then why would
you need scrollbars if it did :P
PUT IN EXTERNAL STYLESHEET (ie global.css):
Adjust left values to move over on page
Adjust top values to move up higher on the page.
#leftpane {
position:absolute;
left:222px;
top:60px;
width:280px;
height:235px;
padding:10px;
z-index:2;
overflow: scroll;
background-color: #FFFFFF;
}
#rightpane {
position:absolute;
left:522px;
top:60px;
width:200px;
height:235px;
padding:10px;
z-index:3;
visibility: inherit;
overflow: scroll;
background-color: #FFFFFF;
----------------------------------------------------------
PUT IN HTML:
<div id="leftpane">
<p>Copy goes here.. it will scroll.</p>
</div> <div id="rightpane"> <p>Copy goes here it will scroll too</p> </div>
bstone@bradleystone.com
317-640-5051
|