Top > moving all the way to the top

Ryan Kent

Well-known member
When I press the Top link in the footer, the view is moved to where the top of the screen is aligned with the top of the nav bar. I can see that I have alerts, but not how many which is inconvenient. I then scroll a bit higher to confirm the number.

I would like the Top link to take me to the absolute top of the page. The vertical scroll bar should be 100% to the top. How can I make this change?
 
Open the footer template.

Look for this:
Code:
<li><a href="{$requestPaths.requestUri}#navigation">{xen:phrase go_to_top}</a></li>

Change it to this:
Code:
<li><a href="{$requestPaths.requestUri}#header">{xen:phrase go_to_top}</a></li>
 
Top Bottom