Reputation: 77
Hey there Im trying to link a anchor point to a new page(Home Page) with the exact position
When I navigate on the home page it is working fine
As soon as I navigate from a other page to the home page for instance (About Us) it cuts of the word
Any clues why its doing that?
Upvotes: 0
Views: 517
Reputation: 2195
Try this, place following code in top of About Us section
<a name="section"></a>
And make your link some thing like following
<a href="http://www.yoursite.com/about_us#section">About Us</a>
It will navigate to that page and scroll to specified position
Upvotes: 2