Smaller Height of Scrollsequence

Question: How to have smaller than 100vh height of the animation? 

Answer: 

There are two options:

1) The canvas is by default 100vh as you have pointed out. If you want the image to be smaller, you can use “scale to fit 30%…..100%” this way you proportionally make the image smaller on the canvas.

See “how to” video on youtube:


2) By forcing the canvas to be smaller size using CSS.


.scrollsequence-pages-wrap{
height:55vh!important; 
} 
.scrollsequence-page{ 
height:55vh!important; 
} 

There is also a thread about this in the WordPress support forum:

https://wordpress.org/support/topic/100-view-height-2/

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.