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

    Hi, i’ve added two buttons in a full width easy slider, one linking to a different page, and one linking on the same page but below.
    The first button, when clicked, scrolls the page down to a tagged item, and starts the loading animation on the button.
    The loading animation never disappears, if i scroll back up i can see it spinning for ever.
    Is there a way to set a time limit on the animation?
    Thanks

    #1442885

    Hey Qgrafica_7,

    Please try the following in Quick CSS under Enfold->General Styling:

    .av-siteloader {
      animation: av-load8 .8s 2 linear;
    }

    Best regards,
    Rikard

    #1443197

    Unfortunately, the loading icon is still there. The only difference is that on the PC, the loading circle keeps spinning, while on the phone, the loading icon remains static.
    Is it possible to hide the loading icon altogether?

    thank you

    #1443220

    Hi,

    Thank you for the inquiry.

    To completely hide the preloader, you can disable the Page Preloading option in the Enfold > Theme Options panel. Or use this css code:

    #top .av-siteloader-extra, #top .av-preloading-logo { 
       display: none !important;
    }

    Best regards,
    Ismael

    #1443232

    It’s not working; mine isn’t a page loading issue. I’ve used a ‘Custom ID Attribute’ that scrolls down (see private content to view how it works). Once scrolled down, if I go back up, I see the loading icon overlaying the ‘vendita’ button.

    • This reply was modified 1 week ago by Qgrafica_7.
    #1443267

    Hi,

    Please try this instead:

    #top .avia_loading_icon .av-siteloader, #top .avia_loading_icon {
      display: none;
    }

    Best regards,
    Rikard

    #1443378

    The loading icon disappears only on the phone, while the same problem continues on the PC. What can I do?
    thank you

    #1443384

    Hi,

    Would you mind providing a screenshot of the element that you’d like to remove? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:

    1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
    2.) Locate the option to upload a file or an image.
    3.) Select the screenshot file from your computer or device and upload it to the platform.
    4.) After the upload is complete, you will be provided with a shareable link or an embed code.
    5.) Copy the link or code and include it in your message or response to provide us with the screenshot.

    Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.

    Best regards,
    Ismael

    #1443389

    of course, I’ve uploaded 3 files naming them according to the various issues and the device where they occur. Additionally, I’ve just noticed a strange bug on my phone. After 3 clicks, the “vendita” button turns black. Is it possible to prevent any changes to the button?
    Thanks a lot for your assistance

    #1443446

    Hi,

    The reason why the CSS is only applying on mobile is because you have placed it after an open media query:

    
    @media only screen and (max-width:767px) {
      #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a {
        font-size: 20px;
        color: white !important;
    }

    I added the CSS at the top for you, and it’s working as expected. Please review your site and close the media query at the proper location.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.