How do I position this "parallax" code in the section tag so that the video starts after navigation bar.
I made the navigation bar transparent so we could see how the lady's head is under it. I would like we could somehow lower this so that her head no longer get cut off.
Many Thanks!
Your header
section have 74px height, you can add padding-top:74px to the .wrapper
div. This Works even in responsive mode. give this a try.
.wrapper{
padding-top: 74px;
}
Hope This Works..