so i'm trying to get the layout of this thing looking ok
right now it is at
div id="wrap"> <div id="head"> </div> <div id="content"> <div class="title"><h1><a href="">Test Title</a></h1></div> </div> <div id="rightcontent"> <div id="navpane"></div> </div> </div>
and the rightcontent div is displayed under the content div
if i do
<div id="wrap"> <div id="head"> </div> <div id="rightcontent"> <div id="navpane"></div> </div> <div id="content"> <div class="title"><h1><a href="">Test Title</a></h1></div> </div> </div>
then they'll display side by side, like i want them to, but in reversed order
css is
#content { width: 571px; height: 340px; background:#323232 url(images/content-bgtop.jpg) no-repeat top left; margin:0; padding:0 20 0 40; }
#navpane { width:179px; height: 340px; background:#323232 url(images/navpane-bgtop.jpg) no-repeat top right; margin:0; padding:0; position:relative; }
#rightcontent { width:179px; min-height:340px; background:#323232; float:left; font-family: Tahoma, Arial, Helvetica, sans-serif; margin:0; padding:0; }
so... why can't i get it lining up side-by-side like i want it to?
fucking divs5/28/2006 4:38:04 PM |