Last active
June 23, 2016 18:36
-
-
Save mohsinrasool/dcd0d90498ea633a265edc0c46a6d789 to your computer and use it in GitHub Desktop.
Issue: Fix double animation of Divi slider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.et_pb_slides .et_pb_slide:first-child .et_pb_slide_description { | |
display:none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($) { | |
window.setTimeout(function() { | |
$('.et_pb_slide_description:first').show() | |
},200); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment