I'm using alvarotrigo.com/fullPage/ for nice fullpage effect. Also i am using bootstrap 3 grid system, which look like:
<section id="section" class="section">
<div class="home">
<div class="container-fluid position-relative">
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-4">
</div>
<div class="col-sm-4">
</div>
</div>
</div>
</div>
Now, we see 3 columns, all closed in section, and this html creates 3 coluns view, and it's ok.
But for smaller viewports, this three columns, transform into 3 full width columns, and this is problem, as fullpage,js now skip second and third column on scroll, so if i scroll to #section, i see only first div, and if i scroll down, animation will go to another section, skipping 2 and 3 div. I created simple illustration .
div 2 and div 3 are grayed to show, that those divs will be skipped during animation.
My question is, can i do setups on fullpage.js or do some tweaks, so script will show those divs, after scroll down ?
Thanks.