|
Try to replace this
#main { min-height: 400px; margin: 0px; padding: 15px; overflow: hidden; }
with
#main { min-height: 400px; height: 400px; overflow: visible; margin: 0px; padding: 15px; overflow: hidden; }
in your style.css file and see if it works
|