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);
thank you soooooo much! I added the / before the image link and worked like a charm! Thanks again!!!
Sincerely,
Craig M.
]]>