Hi @Susi
That is also possible without plugin.
Have a look here:
[image: 1509965790800-bildschirmfoto-2017-11-06-um-11.51.52-resized.png]
You set a background picture
[image: 1509965807897-bildschirmfoto-2017-11-06-um-11.52.05.png]
You make the height of the row the browser height
[image: 1509965834713-bildschirmfoto-2017-11-06-um-11.52.13-resized.png]
That will look like this
[image: 1509965847951-bildschirmfoto-2017-11-06-um-11.52.46.png]
You give the first row a class called background
[image: 1509965866538-bildschirmfoto-2017-11-06-um-11.53.12-resized.png]
You make a second row with some content.
[image: 1509966068074-bildschirmfoto-2017-11-06-um-12.00.38-resized.png]
You give that row the class: second-row
.background {
position: fixed;
top: 0px;
margin: 0px;
left: 0px;
width: 100vw;
}
.second-row {
margin-top: 100vh;
}
You add this to your Custom CSS code.
DONE!
I hope that was easy to understand :-)
Best!
Marius