[Resolved] Add the transition and transformation effect

Home Forums Support [Resolved] Add the transition and transformation effect

Home Forums Support Add the transition and transformation effect

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2346165
    Leonardo

    I would like to add the transition and transformation effect to the contact form buttons and the newsletter button at the bottom of the website.

    I did this on the others, but on these I couldn’t via code…

    The effect is only caused when hovering…

    The 2 buttons I want the effect are these:

    https://germinlab.com.br/wp-content/uploads/2022/09/Sem-titulo-1.png

    #2346491
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    
    .wpforms-submit {
        transform: translate3d(0,0,0);
        transition: all 0.5s ease;
    }
    .wpforms-submit:hover {
        transform: translate3d(7px,0,0);
    }
    #2346672
    Leonardo

    Thanks, thanks, thanks!

    #2346678
    David
    Staff
    Customer Support

    You’re welcome !

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.