Try placing a wrapper around the two column-divs that is the width of the two column-divs combined.
So...
If you have one column at 600px, and another at 200px, create a wrapper-div that is 800px, and place your content column-divs inside the wrapper-div.
Simplified Example
CSS Statements
Code:
#wrap {
display: block;
width: 800px;
margin: 20px auto; /* 20px margins top and bottom - auto center left and right */
}
#colm-1 {
display: block;
width: 600px;
}
#colm-2 {
display: block;
width: 200px;
}
HTML Code
Code:
<div id="wrap">
<div id="colm-1">
blah blah blah stuff.
</div name="CLOSE #colm-1">
<div id="colm-2">
blah blah blah more stuff.
</div name="CLOSE #colm-2">
</div name="CLOSE #wrap">
Now...when the window is contracted, the two content columns should not stack.
Hope this helped!
Bookmarks