Navbar giving the page a scroll bar
Unanswered
Transvaal lion posted this in #help-forum
Transvaal lionOP
I placed the navbar in the layout page. The problem is that in all the pages because of the navbar placement eatch page has a scroll bar for the navbar. How would i make it so that the page get's cropped so that if the contents fit without a scrollbar the page should not have a scrollbar.
3 Replies
Transvaal lionOP
I am using the app router
Transvaal lionOP
Bump
Rex
Check you set heights. Without seeing the css I recommend adding this to your nav class. It’s hacky but it’ll remove the scroll bar til you find the problem
::-webkit-scrollbar {
display: none;
}
Adding an overflow-y:hidden will keep it from scrolling.
::-webkit-scrollbar {
display: none;
}
Adding an overflow-y:hidden will keep it from scrolling.