I have a navbar with a z-index that is above/higher all other elements on a page, which means it is "ignored". Its height is not counted on the page.
Also, I am using Twitter Bootstrap as my website's foundation.
What happens when I try to redirect to an element with anchor tag. Example:
<a href="#idhere">Go to ID</a>
Part of the element I redirected to will get covered (covered element = navbar height) by the navbar since its height is not counted on the page.
I'm sure there is a fix to this with JS/jQuery but I would like to know if I can do it through just HTML & CSS.
Thank you. And please do ask for clarification if I did not address my question clear enough.