Air Theme

So you want no grey area cutting into the background image?

If so, you would use the same code above, but unset the clip-path property.

html .background-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: url(https://d11a6trkgmumsb.cloudfront.net/original/3X/8/3/8352b68….jpeg);
    background-size: cover;
    clip-path: unset;

This actually looks really nice with your image!

8 Likes