I've been working on this for the past hour, and can't for the life of me figure out how to make it work. Someone asked me if I could put a sidebar on the right hand side of their content. Sure, should be no problem. Then I saw their code. http://www.styleleak.com/ How would I get a sidebar onto the right hand side of this site? Thanks.
Well, since their layout appears to be at a fixed width and aligned to the left, you could probably put a div over there using absolute positioning. Something like: <div style="position:absolute; top:100px; left:600px; width: 200px;"> Right side content here </div>
Avoid absolute positioning for general layout techniques if possible. A combination of floats and (sometimes negative) margins will work best.