Hello jreivers
I have created a pure CSS skin so far it seems to work in most browsers, (unless someone can tell me different) see here:
http://www.drivewaydesign.eu/ I have managed to align panes using percentages and floats.
In my css I have a right and a left float, which I can just pop in to any div, etc.
.floatLeft { float: left;}
.floatRight { float: right;}
I also have a selection of width classses, as percentages (with a little give) in various width% combinations e.g.
.width75 { width: 74%;}
.width50 { width: 49.7%;}
.width25 { width: 24.7%;}
So that I can just pop in and change the alignments as I please, providing the combined total widths do not exceed 100%
<div class="cobblestones floatLeft width25">
<div runat="server" id="drivewayLeft" />
</div>
<div class="driveway-content floatRight width75 ">
<div runat="server" id="ContentPane" ></div>
I have found that this is quite flexible, and it seems to work for me, so far without any alignment problems.
I hope that is of some use to you.
Lynn