• Resolved Rick Hellewell

    (@rhellewellgmailcom)


    Just starting out with the plugin (it’s excellent!), and noticing a white flash between slides just after the next slide fades in.

    I tried adding this to the Developer’s CSS area (based on another support ticket here), but that didn’t fix the issue.

    #header .header__inner{
        overflow: hidden;
    }

    It’s a really quick flash, but noticeable. Thanks.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Ramona

    (@nextend_ramona)

    Hi @rhellewellgmailcom

    Your problem happens because of the following CSS code:

    * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
      transition: all 0.5s ease;
    }

    The code coming from your theme: /wp-content/themes/pages/style.css
    It puts a CSS transition to every element on your site whether the element is made by your theme or something else that probably should not be affected.

    For me the following CSS code solved the problem:

    .n2-section-smartslider * {
      transition: none;
    }

    You could put this code to the Customizer > Additional CSS field.

    Thread Starter Rick Hellewell

    (@rhellewellgmailcom)

    Huzzah !! Thanks! Your solution works, but I decided to do this instead (which also worked):

    
    * {transition:none;}

    Thanks for the great (and speedy) support!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘White flash between slides’ is closed to new replies.