flusescally
New Member
I am trying to create a simple website with a content div and a sidebar div but the sidebar div is pushing somethings down in my content div, even though its outside. I believe this is an easy fix, but it has been hard to search for this exact scenario. I created a jsfiddle here, http://jsfiddle.net/WRs7L/.\[code\]<body> <div id="wrapper"> <div id="main"> <div id="sidebar"></div> <div id="content"> <div id="resume"> <section id="employment" class="part"> <h2>Employment</h2> <section class="item"> <div class="info cf"> <div class="left"> <span class="title">Title</span> <span class="employer">Employer</span> <span class="group">Group</span> </div> <div class="right"> <span class="dates">Date</span> <span class="location">Location</span> </div> <div style="clear: both;"></div> </div> <div class="content"> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </div> </section> </section> </div> </div> </div> </div> </body>\[/code\]