My navbar does not stay at the top of the viewport currently I am trying to keep the header which the navbar is within at the top of the page using this code:
background-color:white;
width:100%;
display:flex;
flex-direction:column;
justify-content:center;
text-align:center;
margin-bottom:5px;
height:85px;
position:fixed block;
from what I have read on the forum you need to use:
position:fixed;
but whenever I do this the header just disappears
any help would be appreciated