Ensure you use the “Re-Publish All Files” command from the menu if you’re changing the location of where you’re publishing the site (just to ensure all files get uploaded).
If I export the files to my local disk and edit the file (for example) print_shop.html … I can clearly see that it’s accessing the WRONG resources folder : that of the old site peteryates.co.uk and not the new site (under construction) at peteryates.co.uk / 2025.
I’ve seen several cases of this over the past few days and I’m not sure if it’s an issue with the way Elements writes file paths when exporting, but check out the below showing your print shop page
You’d need to clear out the Folder field in the page inspector. Now you’ve got a / there which sticks the page file in the website root directory. As this is a subpage, the recommended way (and the way Elements does it by default) is to use a subpage/index.html or subpage/index.php. hierarchy.
You’ve got a mix of pages where you have it set as the default way (nothing in the folder field) and other pages where you have a / in the folder field which sticks the page file in the web root directory.
The file paths to the resources directory are getting written as a relative path (../) at the beginning which tells the server to move one level up when searching for the resources folder.
Since you’re sticking your new site in a subdirectory “2025”, your server moves up one level when searching for the resources folder, which isn’t the correct path to that resources folder.
Yup, @differentdan is right Clear that Folder path out or put a name in there you want to use, like: “printshop” - you should also change the filename to index.html