Hello thank you for your time in advance. I am trying to navigate to section in home page from another .html page. My problem is that it always jumps to top of the page no matter which section I specify.
Code in index.html (home/main page for features)
<section id="features" class="s-features target-section">
Code in "other".html page
<nav class="header-nav-wrap">
<ul class="header-main-nav">
<li><a href="index.html">Home</a></li>
<li><a href="index.html#about">About</a></li>
<li><a href="index.html#features">Features</a></li>
The main page uses a class="smoothscroll" if that may be causing issues or is helpful. Thank you very much for your time and patience.