• Resolved cmurway

    (@cmurway)


    Hello all,

    I Was using simple custom css plugin for a while but since it has not been updated in 2 years I went with another (simple css and tried simple custon css and js)
    and for some reason the footer background image is only showing on the front page now. My site is https://www.craigmurway.com and would appreciate any help to get it to show on every page again.

    Here is the css I am using .footer-widgets,
    .footer-info,
    .site-footer,
    .footer-widgets a,
    .footer-info a,
    .site-footer a {
    color: #eee;
    font-size:15px;
    font-weight:500;

    }
    .footer-widgets .widget-title {
    margin:10px;
    color: #eee;
    font-weight: 500;
    }
    .footer-widgets {
    border-bottom: 0px solid rgba(255,255,255,0.08);
    background-image: url(“wp-content/uploads/2017/10/footerwidgetbackground-1024×239.png”);
    background-size:100%;
    background-repeat:no-repeat;
    background-position:center;
    }
    Any help would be greatly appreciated. Thanks in Advance.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • The URL you’re using in the CSS is relative:
    wp-content/uploads/2017/10/footerwidgetbackground-1024×239.png

    So in the homepage it’s looking for
    https://craigmurway.com/wp-content/uploads/2017/10/footerwidgetbackground-1024×239.png

    But on the about page, for example, it’s looking for:

    https://craigmurway.com/about/wp-content/uploads/2017/10/footerwidgetbackground-1024×239.png

    Which doesn’t exist.

    Replace the URL in the CSS with the full URL:

    background-image: url(https://craigmurway.com/wp-content/uploads/2017/10/footerwidgetbackground-1024×239.png);

    or add a slash to the beginning to always look from root:

    background-image: url(/wp-content/uploads/2017/10/footerwidgetbackground-1024×239.png);

    Thread Starter cmurway

    (@cmurway)

    Hi Jacob,

    thank you soooooo much! I added the / before the image link and worked like a charm! Thanks again!!!

    Sincerely,

    Craig M.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Footer widget background image only showing on front page’ is closed to new replies.