Folder StructureI've been trying to set a background image using a local picture I have, but nothing seems to be working for me. I've checked out various websites for solutions, but everyone seems to have different instructions. I've experimented with different combinations of ../, ./, file///, and web/port_back. Some suggest including "" within the () while others don't. I've tried every possible combination with no luck. I've also cleared my cache multiple times just in case that was causing any issues.
My image is located at /Portfolio/port_back.JPG and My CSS file is located at /Portfolio/static/index_app/index.css
CSS:
body {
background-image: url("../../port_back.jpg");
/* background-repeat: no-repeat; */
background-size: cover;
}