I am new to using Bootstrap and AngularJS, and I am currently working on a page where the top and left side of the page need to be static and not move. To achieve this, I used
<nav class="navbar navbar-default navbar-fixed-top
from Bootstrap for the header, and applied position: fixed
to keep the left part of the page static.The issue I am encountering is that the navbar is dynamically created and its height depends on data fetched from the database (which are the filters). This results in my header covering some content on the page making it inaccessible. What would be the best way to resolve this? Perhaps using a different approach instead of the navbar.