mikejmoran of Speak Creative
12/14/2018 - 3:11 PM

404 page banner image fix

The 404 page will not inherit the site wide content banner image. It will show as an empty div. The issue is that the

tag has a class attached to it: form.http-404. The below css will fix this by adding a background image to the banner. Make sure the class correlates to your specific build.

// 404 STYLING ===============================================
  
form.http-404 {
      .interior-banner .slider {
        height: 400px;
        background-image: url('/sitefiles/2597/css/images/mansion.jpg');
        background-size: cover;
        background-position: center;
      }
}