Full page scroll in Bootstrap

Hi, I have a Bootstrap 4.6 HTML page where I have used min-vh-100 so that the page takes the full viewport. I am happy as it works now. But I wonder whether it is possible that mouse scroll scrolls down the full viewport/page we are seeing .

I tried FullPage.js but scrolling is not moving the full page. If possible, please help me do a full page scroll when mouse scroll is used. Thanks.

Found a fix. I added a custom.js file and then used the following code in it

new fullpage('#fullpage', {

//options here

autoScrolling:true,

scrollHorizontally: true

});

//methods

fullpage_api.setAllowScrolling(true);

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.