<div id="nav_bar" style="position: fixed; height: 200px; z-index: 9999;">Navigation Bar</div>
<ul>
<li><a href"#1">A Section</a><li>
<li><a href"#2">B Section</a><li>
<li><a href"#3">C Section</a><li>
<ul>
<ul>
<li><a id="1">A Section</a></li>
<li><a id="2">B Section</a></li>
<li><a id="3">C Section</a></li>
</ul>
When I click the anchor tag, the target section goes underneath the navigation bar. Is there anyway I can have it displayed right underneath the navigation bar instead?
Many Thanks