• Hello,
    I need help, I have a sticky header when I scroll down and the logo respectively shrinks, but when I turn on lazy load (I tried inside Flatsome, WP Rocket and Smush settings) it appears as the same logo twise, one is in the correct position and the other one is right below.
    I guess it could be because some plugin conflict but I can′t figure out which one that could be. Right now I turned off that setting in every plugin I could find.
    What do I do? should I just exclude the logo from lazy load? is it on now by defaut by another plugin?

    Thank you

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Since you have deactivated it, the problem cannot currently be traced. If you suspect the cause in the LazyLoad function of a plugin, contact their support.

    Thread Starter justspinning

    (@justspinning)

    The thing is that the problem persists in every plugin that has lazy load. In other posts I saw that it might be duplicate functionality with other plugins.
    I activated it with Smush right now on blog page:

    https://just-spinning.com/que-es-penspinning/

    so you could see the problem and check what′s wrong.

    Thank you

    The reason is your theme – I guess. Unfortunately you use a cache plugin, so I don’t see exactly where the CSS code comes from. But there is the following entry:

    .nav-dark .header-logo-dark, .stuck .header-logo-sticky {
      display: block !important;
    }

    This looks more like the theme to me because of the class stuck, since the header comes from it. This property just blanketly fades in any image with the header-logo-sticky class.

    I see 2 possible solutions for this:
    a) You add a CSS property that overlays this one. This should be done with

    body .nav-dark .header-logo-dark, .stuck .header-logo-sticky {
      display: none !important;
    }

    Add this in Appeareance > Customizer > Additional CSS.

    b) You talk to your theme developer about it: https://flatsome3.uxthemes.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Double logo with lazy load’ is closed to new replies.