[ad_1]
Plugin Author
malihu
(@malihu)
Hello,
Normally, you’d want each section height to be equal to the viewport height. You can do this by using the CSS vh unit (info).
It would also be better to set a minimum height (instead of just height) so you can have longer content within sections (i.e. content that exceeds the viewport/screen height).
So, a CSS like the following would do the trick:
.your-sections-class{
display: block;
position: relative;
min-height: 100vh;
}Hope this helps
Thread Starter
ndar
(@ndar)
Got it. Thank you so much!
