prevent div getting pushed down on toggle with jquery

Notorious.

New Member
I have two divs that's open on-click. the function works pretty smooth except that the first div keeps pushing down the second div. I want them to stay on each others side.I created a js fiddle, http://jsfiddle.net/Qskxa/1/I think the problem is in the html file ?Thanks \[code\]<div id="artistsbox"> <div class="artist"> <ul class="ulartists"> <li> <span class="toggle">Artist 1</span> <div class="toggle_hide"> <p> Hello world</p> </div> </li> <li> <span class="toggle">Artist 2</span> <div class="toggle_hide"> <p> Hello world</p> </div> </li> </ul> </div> </div>\[/code\]
 
Top