muffin_vbulletin3_import26778
New Member
I'm not dead sure why, but I have creted two CSS classes \[code\]content\[/code\] and \[code\]sidebar1\[/code\], with the intention of putting the sidebar on the right. But no matter what I do, when I put the \[code\]<div>\[/code\]s in, the sidebar ends up on the left!My CodeCSS\[code\].container { max-width: 1500px; min-width: 1200px; background-color: #000000; margin: 0 auto; }.sidebar1 { float: right; width: 200px; padding-bottom: 10px;}.content { padding: 10px 0; width: 1000px; float: right; border-left-color: #FFF; border-right-color: #FFF;}\[/code\]HTML\[code\]<div class="container"> <div class="content"> <h1>Heading</h1> </div> <div class="sidebar1"> </div></div>\[/code\]What am I doing wrong?