I am developing a theme with main content to the left and one sidebar to the right. But my sidebar doesnt align next to the content, but to the right of my window.
Here is the troublesome CSS:
#wrapper {
margin:0px auto 0px auto;
height: auto:
width: 880px;
text-align: left;
background-color: #ffffff;
}
#detail_listing_surround {
padding: 5px;
float: left;
height: auto;
width: 690px;
border: 1px solid #000000;
}
#sidebar {
float: right;
width: 180px;
text-align: left;
font: normal 11px 'Lucida Grande', Verdana, Arial, Sans-Serif; margin:0x 0px 0px 10px;
padding: 0px 5px 0px 10px;
background-color: #ffffff;
}
And here is the template file...
<body>
<div id="wrapper">
<div id="sidebar">sidebar</div>
<div id="detail_listing_surround">
All my stuff..............</div></div>
Please..I am going nuts....