Hi @kiwiland
Those options have totally different purposes.
If you just need scrollable content within a section, you should only be using scrollOverflow:true
.
You’ll also have to make sure to include the requiered file as detailed in the the fullpage.js documentation
scrollOverflow
: (defaultfalse
) defines whether or not to create a scroll for the section/slide in case its content is bigger than the height of it. When set totrue
, your content will be wrapped by the plugin. Consider using delegation or load your other scripts in theafterRender
callback. In case of setting it totrue
, it requires the vendor libraryscrolloverflow.min.js
. This file has to be loaded before the fullPage.js plugin, but after jQuery ( in case of using it). For example:
<script type="text/javascript" src="vendors/scrolloverflow.min.js"></script> <script type="text/javascript" src="fullpage.js"></script>
I can’t see fullPage.js working in the link you provide, so I would recommend you to take a look at my project or even clone it and take it as a starting point: