csspreloadpreloadjs

Remove preload element in CSS


I designed a template-based web page: Website

Whenever a page is loading there's a horrible brown circle (with transparency) that appears in the front and it shouldn't.

The only thing my template service provider allows me in the code is to include CSS. So do you suggest any simple code that could either take this element off, make it 100% transparent or change its color to background?

I assume it must be related to something like:

preloader {
  display: none;
}

The simplest things sometimes are not as easy as they seem.

Thanks!


Solution

  • This should work for you, it just targets the "horrible brown circle" and hides it before it can show

    .loading-central {
        display: none;
    }