I have two divs inside a div, I want them both adjacent to each other with a margin of 10px or so separating them but instead they appear one above the other.
Add float:left;:
float:left;
#fact, #sortbar{ float:left; margin-left:10px; }
See the working demo here.