When working on hosting, it should be borne in mind that the Windows operating system does not distinguish between upper and lower case letters in files, unlike the Linux operating systems that are installed on the server. In this regard, you should take into account that if you are in HTML specify image name as Background.jpg
, and the file in reality will be called background.jpg
then it will be displayed on the local Windows machine, but not on Linux.
To avoid this, we do not recommend using in file names:
Also for debugging and troubleshooting, you can use the developer tools in the browser (usually opened by clicking F12) Is a very powerful tool that no professional webmaster can work without. We highly recommend to study it for anyone who is engaged in the creation of sites.
To troubleshoot incorrect loading of images, styles, JavaScript and other files, we recommend that you follow the steps similar to these:
sample-1.jpg
are called Sample-1.jpg
and because of this they are not loaded. Rename a file from Sample-1.jpg
in sample-1.jpg
solves the problem.