Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #541606

    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

    #541957

    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

    #542255

    Exactly what I am looking for!!

    This makes the difference to other theme-providers support!

    Thank you
    Andreas

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Changing caption fade-in for fullwidth slider’ is closed to new replies.