How do you disable the preloader when the page loads?
Step 1: In the page right after the <body> tag you will see the code like in the below. Simply, remove that code.
<!-- Preloader -->
<div id="preloader">
<div id="status"><i class="fa fa-spinner fa-spin"></i></div>
</div>
Step 2: Open the file js/custom.js and remove the code like in the below.
jQuery(window).load(function() {
// Page Preloader
jQuery('#status').fadeOut();
jQuery('#preloader').delay(350).fadeOut(function(){
jQuery('body').delay(350).css({'overflow':'visible'});
});
});