In my UI I have an accordion setup like this:
Section 1 ...content... //
Setting the DIV's height will do the trick.
$(document).ready(function() { $("#accordion").show().accordion({ autoHeight: false }); $("#accordion div").css({ 'height': 'auto' }); });