Background image/color not working on body tag

Nothing in CSS can take an element out of the DOM. It just hides it and collapses it. Display:none; is pretty bad for screenreaders though - https://css-tricks.com/places-its-tempting-to-use-display-none-but-dont/

It’s loading, but due to this rule, it’s being hidden. Why do you have this set? It’s in custom.css

* {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

I took that out and its still giving me a problem. That code is there from a tutorial I grabbed the transitions from for the portfolio hovers. I keep that in a scss file but it gets imported and compiled then into custom.css

Wait, now its working, thank you

You’re welcome :slight_smile: .

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.