Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #437960

    How can we change the spinning wheel for page preloader ?

    #439038

    Hi pixallus!

    Thank you for using Enfold.

    You can modify the css:

    .av-siteloader {
      font-size: 10px;
      position: relative;
      text-indent: -9999em;
      margin: 0 auto;
      border-top: 2px solid rgba(0, 0, 0, 0.2);
      border-right: 2px solid rgba(0, 0, 0, 0.2);
      border-bottom: 2px solid rgba(0, 0, 0, 0.2);
      border-left: 2px solid #000;
      -webkit-animation: av-load8 0.8s infinite linear;
      animation: av-load8 0.8s infinite linear;
    }

    You can find the animation keyframes in the css > layout.css file:

    @-webkit-keyframes av-load8 {
      0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
      100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
    }
    @keyframes av-load8 {
      0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
      100% {-webkit-transform: rotate(360deg); transform: rotate(360deg); }
    }

    It’s possible to create your own animation. Look for any css animations tutorial.

    Cheers!
    Ismael

    #444251

    Hi,

    Where is the file structure can I find the template file the drives the preloader? I’d like to replace the CSS loader with a gif (client has a specific idea that won’t work using CSS anim). Thanks :)

    #444315

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .av-siteloader { display: none; }

    and upload your gif as “Custom Logo for preloader”

    Best regards,
    Yigit

    #454656

    This is a related question. What is the CSS for changing the background color of the preloading page?

    #454659

    Hi!

    Please add following code to Quick CSS and adjust as needed

    #top .av-siteloader-wrap {
      background-color: orange;
    }

    Regards,
    Yigit

    #454675

    That was just what I needed. Thank you!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘change gif for page preloader’ is closed to new replies.