Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1240652

    Hello, is it possible to change the original loading loader to another? I intend to change the circle logo. Thank you!

    http://i.szoter.com/26295d58b9ed7521

    #1240839

    Hey elfuego1340,

    Yes, it’s possible.
    In Enfold > Theme Options, enable Page Preloading then upload the new image in Custom Logo for preloader
    Hope this helps :)

    Best regards,
    Nikko

    #1240880

    Hi Nikko, thanks for replying. Unfortunately, however, I intend to change the default circle .. in fact if I put an image as a preloader it does nothing but put itself above the default circle. I would really like to change the circle. Thanks and I look forward to your kind reply.

    As shown in the image, if I add files for the preloader (yellow arrow), it is placed above the default circle (orange arrow)

    http://i.szoter.com/bae9c617824023f8

    #1241094

    Hi elfuego1340,

    I see, please remove the logo then go to Enfold > General Styling > Quick CSS, then add this CSS code:

    #top .av-siteloader {
        background: url(https://website.com/path/to/logo.jpg) center center no-repeat;
        background-size: contain;
        border: none;
        height: 120px;
        width: 120px;
    }

    Then replace http://website.com/path/to/logo.jpg with your logo or image.
    Also, adjust the height and width as needed.
    Hope this helps :)

    Best regards,
    Nikko

    #1241239

    Perfect thanks it works!

    #1241337

    Hi elfuego1340,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1263474

    Hi Nikko, I have a gif preloader that I don’t want to rotate .. is it possible to do this with a new CSS? Because with the previous css the gif image turns on itself. Thanks!

    Below is an example:

    https://www.overlimitswear.com/pacman.gif

    #1263920

    Hi elfuego1340,

    Try to add animation: none; or (if it doesn’t work) animation: none!important; to:

    #top .av-siteloader {
        background: url(https://website.com/path/to/logo.jpg) center center no-repeat;
        background-size: contain;
        border: none;
        height: 120px;
        width: 120px;
    }

    it should look like:

    #top .av-siteloader {
        background: url(https://website.com/path/to/logo.jpg) center center no-repeat;
        background-size: contain;
        border: none;
        height: 120px;
        width: 120px;
        animation: none;
    }

    Hope it helps. :)

    Best regards,
    Nikko

    #1264062

    Hi Nikko, thank you very much it works perfectly with the code below, see you next time!

    #top .av-siteloader {
    background: url(http://website.com/path/to/logo.jpg) center center no-repeat;
    background-size: contain;
    border: none;
    height: 120px;
    width: 120px;
    animation: none;
    }

    #1264086

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Change the original loading loader’ is closed to new replies.