Hello Armin, is there a way to have a button to go to the bottom of the page? I have a three slides fullscreen slider and I want to access the second and third from the first one.
Here's an example of what I mean: http://vigoriti.it/example
Please let me know, thanks a lot!!
-
Fullscreen Slider / "Scroll to Bottom" button
-
@Gonzalo I have a similar problem - since installing the magnetic slides I can no longer scroll to the bottom of the page...
-
@Gonzalo How did you manage to set up the fullscreen slider? Is that an add-on? Thx!
-
@treh16 Yes! you may find it here: http://laytheme.com/fullscreen-slider.html
-
I think you mean this page here right:
http://www.alexandralunn.com/contact/It's just too much text for the slide. I think here it makes more sense to not use the fullscreen slider for that page.
For going to the 3rd slide from the first you could add a class of "go-3rd" to your element.
Go to "lay options" -> "custom css & html" -> "custom head content"
Then add:<script> jQuery(document).on("click", ".go-3rd", function(event) { jQuery.fn.fullpage.moveTo(3); }); </script>
Also you want to add this css:
.go-3rd{ cursor: pointer; }
And just for going up and down (which wasn't your question):
So basically if you update your fullscreen slider addon and give an element a class of "fp-godown", then it will be clickable and the page will slide down on click. Also you can use the class "fp-goup" -
@arminunruh Thank you!!