Okay
  Public Ticket #1511858
Changing animated title text reveal time
Closed

Comments

  •  1
    Kris started the conversation

    Hi

    I figured out how to change the delay/reveal time for an animated title, but I can't find out how to make the text itself keep in sync with the adjustment.

    Can you help?

    .nectar-animated-title[data-style="color-strip-reveal"].completed .nectar-animated-title-inner:after{-webkit-animation:colorStripReveal 1.0s cubic-bezier(0.85,0,0.12,1) forwards; animation:colorStripReveal 1.0s cubic-bezier(0.85,0,0.12,1) forwards}

  •  9,016
    Tahir replied

    This should likely work

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    .nectar-animated-title[data-style="color-strip-reveal"].completed .nectar-animated-title-inner:after {
        -webkit-animation: colorStripReveal 1.0s cubic-bezier(0.85,0,0.12,1) forwards;
        animation: colorStripReveal 1.0s cubic-bezier(0.85,0,0.12,1) forwards;
    }
    .nectar-animated-title[data-style="color-strip-reveal"].completed .nectar-animated-title-inner .wrap, .nectar-animated-title[data-style="color-strip-reveal"].completed .nectar-animated-title-inner .wrap * {
        -ms-transition: transform 1s cubic-bezier(0.85,0,0.12,1);
        -webkit-transition: -webkit-transform 1s cubic-bezier(0.85,0,0.12,1);
        transition: transform 1s cubic-bezier(0.85,0,0.12,1);
    }

    Thanks


    ThemeNectar Support Team 

  •  1
    Kris replied

    Thanks!!