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
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
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
… 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