if you go to this page and hit one of the left dropdowns – http://ryancoughlin.com/hp/index.php?c=about – it almost looks like it is glitching/bumping, once it gets to the bottom or rides back up top.
Is it possible to fix this? Or is this how it behaves in jQuery?
CODE:
$('.menu-header').click(function() { $(this).next().toggle('slow'); return false; }).next().hide();
In your CSS, change
to
The issue is that your margins are collapsing with the margins of the
h2at the beginning and end of the animation, but not during the animation, becauseoverflowof theulis notvisible*, preventing the collapsing. The lack of collapsing increases the effective size of theul.*W3 on the box model and margin collapsing: