From 64adb3dd4b5baab2a49e0f57c22d19c81a87ed52 Mon Sep 17 00:00:00 2001 From: David Cramer Date: Wed, 9 May 2012 03:27:20 +0000 Subject: [PATCH] Webhelp: Arun's fix for bug where heading was partially hidden by header in some situations. --- xsl/webhelp/template/common/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xsl/webhelp/template/common/main.js b/xsl/webhelp/template/common/main.js index 83f58e432..714cdeec3 100644 --- a/xsl/webhelp/template/common/main.js +++ b/xsl/webhelp/template/common/main.js @@ -81,7 +81,7 @@ $(document).ready(function() { // you click on a link from another page. var hash = window.location.hash; if(hash){ - var targetOffset = $(hash).offset().top - 105; + var targetOffset = $(hash).offset().top - 120; $('html,body').animate({scrollTop: targetOffset}, 200); return false; } -- 2.50.1