AishaB
AishaB

Reputation: 1

Background images don't show in Chrome

I currently have my background images set to:

#two {
        background:url(http://d7.gordongroup.com/NisgaFilmPitch/images/bgimg_3.jpg);
        background-size:cover;
        background-attachment:fixed;
        background-position:center center;
    }

I also have a big video in the Hero section. I cannot figure out why the images will not show sometimes and sometimes they will.

The website link is below: http://d7.gordongroup.com/NisgaFilmPitch/index.html

Please somebody save me from ripping my hair out. Thank you.

Upvotes: 0

Views: 81

Answers (1)

Andrew Engdahl
Andrew Engdahl

Reputation: 11

Put quotations around your image URL

background:url("http://d7.gordongroup.com/NisgaFilmPitch/images/bgimg_3.jpg");

Upvotes: 1

Related Questions