Hello,
Thanks for your Patience!
Open the 404.html Page of your Website in the Text Editor.
Find the following codes:
[ch_pre]
- The
href="style.css" is a Relative URL and will take the URL according to the URL in the Address Bar. So when you are trying to load: https://coastmetalsolutions.com/new/test , it looks for https://coastmetalsolutions.com/new/test/style.css File which does not exist on your Servers, thus there are issues on your Page (check your Browser's Developer Console). So, to fix this use the following codes:
[ch_pre]
As the href="https://coastmetalsolutions.com/new/style.css" is an Absolute URL and will always load the style.css File from any Page using this URL. You will need to change all the Relative URLs on your Page (even for Images and JS Files) to Absolute URLs.
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.
PS: This is not an Issue with Canvas Codes, but this is how Web works.