i use scrollify for my website. ( https://github.com/lukehaas/Scrollify )
i have a link in my first section that points to a div in the second (standart scroll element) section but when i click on it scrollify always scroll up to the beginning of the second section.
is it somehow possible to make scrollify stay at the right div
i did a fiddle here:
http://jsfiddle.net/rz6yv2up/2/
<section>
<div id="top"><a href="#item21">Link to Item </a></div>
</section>
<section>
<div id="bottom">
<div id="item1">item</div>
<div id="item2">item</div>
<div id="item3">item</div>
<div id="item4">item</div>
<div id="item5">item</div>
<div id="item6">item</div>
<div id="item7">item</div>
<div id="item8">item</div>
<div id="item9">item</div>
<div id="item10">item</div>
<div id="item11">item</div>
<div id="item12">item</div>
<div id="item13">item</div>
<div id="item14">item</div>
<div id="item15">item</div>
<div id="item16">item</div>
<div id="item17">item</div>
<div id="item18">item</div>
<div id="item19">item</div>
<div id="item20">item</div>
<div id="item21">item 21</div>
</div>
</section>
thanks for your help :)