Does the path name to the image require the leading "/" ? Thinking that it's trying to find an image in the css/images/banners (non-existent) folder and not in the file path from the root folder
e.g.:
background-image: url(/images/banners/xxxx.png");
OR first try the absolute URL:
background-image: url ("https://www.yoursite.com/images/banners/xxx.png")
The leading "/" tells it to look from the root folder of the site.
e.g.:
background-image: url(/images/banners/xxxx.png");
OR first try the absolute URL:
background-image: url ("https://www.yoursite.com/images/banners/xxx.png")
The leading "/" tells it to look from the root folder of the site.
Statistics: Posted by AMurray — Tue Aug 20, 2024 10:02 pm