Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

slideToggle height is "jumping"

My jQuery slideToggle() experiment

Can anybody tell me why my boxes "jump" when i open them? The first half they slide, the rest they "jump"??

Thanks, Johannes

like image 580
Johannes Avatar asked Feb 24 '10 17:02

Johannes


1 Answers

Its a simple fix. Add this CSS rule to your stylesheet (Tested in Firebug to work, and from my past experience with this problem, this is the fix):

ol.message_list { position: relative } 

It is a CSS bug, not a jQuery bug per se.

like image 98
Doug Neiner Avatar answered Oct 03 '22 12:10

Doug Neiner