• Resolved dlmweb

    (@dlmweb)


    URL: http://www.wendtcenter.org/

    I have GRSlider running on 43 websites without issue, and I’ve never seen this issue before. It appeared in the last week, prior to WP 4.5 upgrade. No new plugins were added.

    Flashing issue that happens in a second:
    1 – The image-on-deck appears directly below the current slider image (so two images appear).
    2 – The current slider image then disappears (leaving a blank space up top, with on-deck image still showing below.
    3 – The on-deck image then appears in the slider spot.
    3 – Repeat with the next image.

    I’m baffled. Any ideas how to troubleshoot this?

    https://wordpress.org/plugins/genesis-responsive-slider/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Nick C

    (@modernnerd)

    Hi, dlmweb.

    It looks like the inline margin-right: -100%; style on each .slide element is being overridden by this code from your theme’s stylesheet at themes/legacy/style.css on line 978:

    .flexslider .slides > li {
    	margin: 0 !important;
    }

    One way to fix that would be to edit the code to look like this instead:

    .flexslider .slides > li {
    	margin: 0 !important;
    	margin-right: -100% !important;
    }

    That should make the transition smooth again.

    Thread Starter dlmweb

    (@dlmweb)

    Nick,
    THANK YOU!
    That does appear to have resolved the issue.

    But how odd that the issue has just appeared when the code has been in place for many months….

    Again, many thanks for your time and expertise. Bravo.

    Plugin Support Nick C

    (@modernnerd)

    You’re welcome!

    I’m not sure why this issue would suddenly appear (unless perhaps the slider transition style was changed recently), but glad it’s now running smoothly again. 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Odd flashing has just appeared’ is closed to new replies.