It looks like it’s just a CSS problem. The div with a class of “one_first” is overlapping the div with the shopping cart content. If you add this to your your css it should fix the issue:
.one_first { clear: both }
Thank you Vinny, I just had to change it to { clear: both !important; } and that fixed it!