• Resolved David_G

    (@questas_admin)


    I can’t seem to get a footer background to load. In firebug it says “failed to load” and it goes to some default dark BG. It worked before but now it’s not. Any ideas?
    FYI it’s using the same image as the header which DOES work.

    SITE LINK

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter David_G

    (@questas_admin)

    Anyone?

    Comparing:

    body {
      background: rgba(0, 0, 0, 0) url("https://www.resultsresumes.net/wp-content/uploads/concrete-bg.jpg") no-repeat fixed center center / cover ;
    }

    with:

    footer#footer .colophon {
      background: rgba(0, 0, 0, 0) url("https://youneedthissite.com/resultsresumes/wp-content/uploads/concrete_seamless.png") repeat scroll 0 0;
    }

    and

    .tc-header {
      background: rgba(0, 0, 0, 0) url("https://youneedthissite.com/resultsresumes/wp-content/uploads/concrete_seamless.png") repeat scroll 0 0;
    }

    Thread Starter David_G

    (@questas_admin)

    #redellconsulting, do you have any idea as to what is happening? The charcoal color of the footer BG isn’t in any css I can find, should be defaulting to white but it’s not. I can add background-color using the same selector and that does work, but that’s not what I want.

    Here’s the CSS from my child regarding this:

    body {
    background: url(https://www.resultsresumes.net/wp-content/uploads/concrete-bg.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    	}
    /* Sticky Header Backgound Image */
    .tc-sticky-header .tc-header {
    background: url(https://youneedthissite.com/resultsresumes/wp-content/uploads/concrete_seamless.png);
    }
    /* Header Backgound Image */
    .tc-header {
    background: url(https://youneedthissite.com/resultsresumes/wp-content/uploads/concrete_seamless.png);
    }
    
    /* Footer Backgound Image */
    footer#footer .colophon   {
    background: url(https://youneedthissite.com/resultsresumes/wp-content/uploads/concrete_seamless.png) repeat 0 0;
    }

    Failed to load resource: the server responded with a status of 404 (Not Found)
    https://youneedthissite.com/resultsresumes/wp-content/uploads/concrete_seamless.png

    so that image doesn’t exist.

    Thread Starter David_G

    (@questas_admin)

    OK got that fixed, cannot believe the path was wrong. But now my footer text isn’t showing.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘footer image not loading.’ is closed to new replies.