Reputation: 619
I am implementing the following code:JSFiddle
Everything with the lightbox works fine. However when I open the lightbox it shows the middle of the content and I have to manually scroll to the top. I have tried to implement Javascript code
$('#light').each(function(){
$(this).click(function(){
$('html,body').animate({ scrollTop: 0 }, 'slow');
return false;
});
});
However it seems it does not work. Can anyone help please?
Thanks
Upvotes: 0
Views: 603
Reputation: 4818
In your .white_content
class update your top:0
to top:115px
This may help you to put your lightbox without scroll to top
Upvotes: 0