Hello,
I have a global block set as a section lower background layer at the top of the page that I am having difficulties with. The issues that I am currently facing are that I want the whole section to be the size of the screen upon load and that I want the section to be totally fixed so that the second section (below) scrolls over the top of the first section when the user scroll down.
I have added the following CSS to the global block but nothing appears to work:
$el {
min-height: 100vh;
transition: none !important;
}
If I add the same code to the actual section for some unknown reason it kicks the whole block and the heading is not visible. What am I doing wrong?
I also have the following CSS for the section itself:
$el {
transition: none !important;
background-attachment: fixed;
}
And also should I be adding the CSS to the global block or the section itself or even both?
Here is the test page that I am trying this out on: https://mode500.com/newest/
Thanks in advance!