To make your Dawn theme have a big picture with a transparent header:
Create a transparent header: Include CSS in the foundation.CSS file:
.header-wrapper {
background-color: transparent;
position: absolute;
width: 100%;
z-index: 10;
}
Insert a Full-Width Picture: Use the following CSS to make sure the picture in the image-banner.liquid file is full width:
.banner-image {
width: 100%;
height: 100vh;
object-fit: cover;
}
Modify Padding: Take Out Padding Using:
.main-content {
margin-top: 0;
padding-top: 0;
}