Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #692567

    Hi,
    Currently working on a site and I have a portfolio grid that I am building for the staff page. It’s looking great (thanks) but I have a problem that when you click on one of the staff members the page scrolls too far down and the navigation is hidden under the logo area.

    Is there any way that you can advise me how much it scrolls when an image is clicked. I’ve linked the development site in the private content area. It just needs to be -30px different.

    Thanks in advance.

    #692568

    I found another post about this and it gave me an idea of where to look. I changed the 210 & 135 numbers (previously were 175 and 100)

    				scroll_top: function()
    				{
    					setTimeout(function()
    					{
    						var target_offset = target_wrap.offset().top - 210,
    							window_offset = win.scrollTop();
    											
    						if(window_offset > target_offset || target_offset - window_offset > 135  )
    						{
    							$('html:not(:animated),body:not(:animated)').animate({ scrollTop: target_offset }, options.timing, options.easing);
    						}
    					},10);
    				},
    
    #692607

    Hi!

    Happy you could solve it out.
    Please do let us know if we can do anything else for you, we will be happy to help.

    Thanks a lot

    Best regards,
    Basilis

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.