redesigning with absolute positition is hard because its going to very greatly per browser. I would suggest moving to a fluid layout based upon percentages.
the way I would do this is create a 2 column float, left (C) and right (__)
then after you put whatever you want in the dash column you can create another float for the remaining columns
HTML Code:
[B]__DOCTYPE___[/B]
<body>
<div id="wrapper">
<div id="B">
</div>
<div id="C">
</div>
<div id="right">
<p></p>
<div id="L">
</div>
<div id="R">
</div>
<div id="footer">
</div>
</body>
Code:
<style type="text/css">
body {
margin: 0 auto;
width: 80%;
text-align: center;
min-width: 780px; /* 800x600 friendly */
}
div#wrapper {
text-align: left;
}
div#C {
float: left;
width: 45%;
}
div#right {
float: right;
width: 45%;
}
div#L {
float: left;
width: 45%;
}
div#R {
float: right;
width: 45%;
}
div#footer {
clear:both;
}
</style>
Bookmarks