I'm having trouble with adding backgrounds to different elements on the same page and could use some help. I'm trying to make a one page site with multiple sections and backgrounds (like http://ofarevolution.com/) using "background-attachment" but I can't get more than one background to appear. I'm going insane, please help.
Here is my setup: http://codepen.io/marks828/pen/YWLKmw
<body>
<div class="wrapper">
<div class="stage">
<p>
"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas
</p>
</div>
</div>
<div class="fraknie">
<div>
<p>
"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas
</p>
</div>
</div>
.stage{
background-image: url("../img/portfolio/stage.jpg");
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
}
.frankie {
background-image: url("../img/portfolio/frankie.jpg");
}