I've been attempting to recreate the problem using this plunker.
.demo-blog.mdl-layout .mdl-layout__content {
padding-top: 0px;
position: relative;
margin-top: -80px;
z-index: 100;
}
header.main-header{
z-index: -50;
}
My goal is for the "on the road again" div to appear on top of the header that says "evolution update". I've tried adjusting the parent's z-index, altering each associated unit's z-index, wrapping the header in a div tag, but nothing seems to be working. The "on the road again" div continues to linger behind the header.
This is what I'm aiming for: this.
Thank you in advance for your assistance.