How to add a logo as loading icon in ShopIsle
Important notice: This product is now in maintenance mode and is no longer being actively developed or supported. Updates and bug fixes will not be provided unless they relate to security concerns.
If you want to change the loading icon/preloader icon to an image then you first need to install our CSS plugin Advanced CSS Editor and in Appearance -> Customize -> Advanced CSS Editor add the following code to the "Global CSS" section:
/* Makes logo round */ border-radius: 50%; /* Controls width */ width: 125px; /* Controls Height */ height: 125px; /* Enter image URL */ background-image: url("http://example.com/image.png"); /* Stops logo from spinning */ animation: none !important; -webkit-animation: none !Important; -moz-animation: none !important; -o-animation: none !important; /* Stops background repeating */ background-repeat: no-repeat; /* fills in image */ background-size: cover; /* remove border */ border: none !important;
Adjust the properties above to your liking, the most important would be the actual URL of the image and the dimensions, an image 125x125px is recommended.