[Fixed]-Navbar over extend block content, how to solve?

1👍

Your navbar is fixed at the top of the screen and won’t be taken into account for relative positioning. Add top padding to your body or top margin to your container (around 70px).

body {
    padding-top: 70px;
}

For an example by Bootstrap see: https://getbootstrap.com/examples/navbar-fixed-top/

Leave a comment