I have a sidebar div, which for some reason has an absolutely massive right edge, and I cannot understand why this is happening. This spins the floats for the rest of the material on my page and you need your help to understand why this is happening.
I checked the rest of my CSS for any conflicting CSS that could assign a huge margin but can't find anything.
I understand that some of them are out of context, but just carry with me.
div
<div id="leftsidebar"> <h2> Yesterday Games </h2> <img src="images/dividerSmall.gif" /> <div class="gamelist"> **gamelist is populated by MySQL database** </div> </div>
CSS for any related divs
#leftsidebar { position: relative; padding-left: 10px; width: 225px; margin-right: 0px; } .gamelist { height: auto; width: 225px; padding-left: 20px; margin-top: -27px; }
source share