Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1401344

    Hi,
    i use optional logo image on my page and i need disable for mobile connection due to loading speed. Is it possible?

    Thank you very much.
    Martin

    My website: https://martinmoravek.eu

    #1401487

    Hey martinmoravek1,

    Thank you for the inquiry.

    Are you trying to disable the preloader on mobile view? There is no option for this by default, but you can add a css to hide the preloader background on mobile view.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .av-siteloader-wrap {
        display: none !important;
      }
    }
    

    Best regards,
    Ismael

    #1401498

    thank you very much, Ismael, it´s ok
    but i found out another thing– from mobile burger I can’t click on the link, it’s always just highlighted in the menu. I would need it to go immediately to the link after clicking on the menu item and I don’t know where to set it. can i ask one more thing?

    thanks
    Martin

    #1401525

    … so the change in burger behavior is caused by the new ccs code. after removing it works normally but with the image on the preloader

    Martin

    #1401634

    Hi,
    Thanks for the feedback, please try this css instead:

    @media only screen and (max-width: 767px) {
      .av-preloading-logo {
        display: none !important;
      }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

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