Okay
  Public Ticket #1582254
Boxed column hover animation
Closed

Comments

  •  4
    Marcin started the conversation

    Hi,

    I have some small bug with hover animation on boxed column. When there is no  start animation on column the hover shadow is with ease animation (4th column), but first 3 columns have start animation and the hover effect is without slow hovering. Attached the columns with the issue.

    Thanks in advance.

    Marcin

  •  9,074
    Tahir replied

    Hey Again,

    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):

    .col.boxed, .wpb_column.boxed {
        -webkit-transition: transform .2s ease,-webkit-box-shadow .2s ease !important;
        -moz-transition: transform .2s ease,-moz-box-shadow .2s ease !important;
        transition: transform .2s ease,box-shadow .2s ease !important;
    }

    Thanks


    ThemeNectar Support Team 

  •  4
    Marcin replied

    Work like a charm! Thank you!