I have a page with working anchors like these:
<a class="nav-link" href="#ta-services">Leistungen</a>
...
<section class="border-top" id="ta-services">
On another page, I want to link to the first page at the same anchors position. In my understanding, that should be possible with plain html:
<a class="nav-link" href="index.html#ta-services">Leistungen</a>
However, the link works just like a normal link to index.html, the page does not scroll down. Example online at http://elisabethzenz.at/impressum_datenschutz.html. Link in the upper right named "Leistungen".
The website is based on a bootstrap template, it might be some interference with the full screen header image – I would appreciate any hints how to solve the issue!