Ok. But the problem in Standart theme animation, which overlaps or sets a style of animation over my personal.
Myabe you can find way to set off theme animations for custom button element?
My custom button has css code
.button-trial
{
padding: 15px 37px 15px 20px;
background-color: #6CC221;
color: #FFF;
font-family: "Verdana";
font-size: 16px;
/* font-weight: 600; */
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
border: 0px;
text-transform:uppercase;
text-align:center;
font-size:18px;
}
and
.button-trial:hover
{
background:#488613;
background:-moz-linear-gradient(top, #6cc221 1%, #488613 100%);
background:-webkit-gradient(linear, left top, left bottom, color-stop(1%,#6cc221), color-stop(100%,#488613));
background:-webkit-linear-gradient(top, #6cc221 1%,#488613 100%);
background:-o-linear-gradient(top, #6cc221 1%,#488613 100%);
background:-ms-linear-gradient(top, #6cc221 1%,#488613 100%);
background:linear-gradient(to bottom, #6cc221 1%,#488613 100%);
filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#6cc221', endColorstr='#488613',GradientType=0 )
}
What to add to set off theme’s button animation?
Thanks!