Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] background image will not load

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #198183
    kevmacs
    Participant

    Sat March 14 2015

    Please help:

    My CSS background image shows up when I view it internally, but it does NOT load “live” on the web.

    This is a link to the site

    http://www.westcoastcolour.ca/index.html

    The home screen should not be white it should display the background image. (it’s a picture of the top of a house)

    I don’t see it being an issue with it not pointing to the image, as it’s an HTTP image not an image inside a folder.

    I am lost
    Please help. :|

    Thanks..

    note: the image loads fine in codepen also, so I really don’t get why it won’t on my actual site?

    Here is my CSS code: https://codepen.io/anon/pen/gbQpeQ

    .intro {
    width:100%;
    position:relative;

    background: url(http://westcoastcolour.ca/img/bg1.jpg) no-repeat top center;

    }

    #198184
    Shikkediel
    Participant

    The image path is capital sensitive – the file has the extension .JPG while in the CSS on the site it’s referenced as .jpg.

    #198186
    kevmacs
    Participant

    Thanks “Shikkediel”

    I changed the file name and the CSS to small case .jpg but it still does not show up on live site? Did I miss something from your suggestion?
    https://codepen.io/anon/pen/gbQpeQ

    #198187
    Shikkediel
    Participant

    I can still only find the file with capitals (other one’s a 404) :

    http://www.westcoastcolour.ca/img/bg1.JPG

    If the CSS is small case and this file name too, it should work.

    Edit – looks like the file linked to on Codepen is in a higher directory :

    http://westcoastcolour.ca/bg1.jpg

    #198195
    kevmacs
    Participant

    YES!! “Shikkediel”

    You are correct, classic tunnel syndrome. I thought I fixed it but was changing the wrong image’s name.

    http://www.westcoastcolour.ca/

    IT WORKS!

    Thank you so much

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.