如何在Wordpress主题中删除或禁用Preloader?

问题描述 投票:1回答:4

我从themeforest购买了一个主题,我只想从中删除/禁用预加载器,下面是wordpress主题的链接。

http://demo.thewebsitedev.com/offshore/

wordpress preloader
4个回答
0
投票

请把这个css放在你的自定义css上,这应该可行,

body > .preloader{ display: none; }

0
投票

loaded事件上的body标签上设置类document.ready。像那样

jQuery(document).ready(function () {
    jQuery("body").addClass("loaded"); // that is :)
    //Preloader Effect  
    //code
});

0
投票

转到外观>自定义>其他CSS并尝试

#preloader{display:none !important;}

0
投票

goto APPEARANCE}自定义附加css然后添加下面的代码

#preloader{display:none !important;}
© www.soinside.com 2019 - 2024. All rights reserved.