When I view the source of your site you have code that says stuff like this:
body {
background-color: #FFF;
background-image: url(file:///C|/Users/Sean/Barrie%20Golf/Back%20Ground.jpg);
background-repeat: no-repeat;
}
The “file:///C|/Users/Sean/Barrie%20Golf/Back%20Ground.jpg” is an absolute path to a file on your machine. You need to make sure you build web pages with your site setup correctly first. Check the images that aren’t showing up and try to change the path.
Absolute Path on Web:
https://www.barriegolfcourses.com/Barrie%20Golf/Back%20Ground.jpg
Absolute Path for your Site:
file:///C|/Users/Sean/Barrie%20Golf/Back%20Ground.jpg
Absolute Path Relative Path to your subdomain.
/Barrie%20Golf/Back%20Ground.jpg
Relative Path to your current file
Barrie%20Golf/Back%20Ground.jpg
etc.
Abraham