Tagged: fullwidth slider
Hi,
is it possible to change the fade-in effect for the captions in fullwidth slider? At the moment the captions come slightly from top, I would prefer them to just fade in slowly. Where and how can I change this?
Best regards
Andreas
Hi moviestar007!
Around line 4651 in the /enfold/css/shortcodes.css file you should see this.
@-webkit-keyframes caption-top {
0% { -webkit-transform:translate(0,-20px); opacity: 0; }
100% { -webkit-transform:translate(0,0); opacity: 1; }
}
Try changing it to this.
@-webkit-keyframes caption-top {
0% { opacity: 0; }
100% { opacity: 1; }
}
Best regards,
Elliott
Exactly what I am looking for!!
This makes the difference to other theme-providers support!
Thank you
Andreas