HomeBadge animation
1 Answers
On line 501 in your style-front sheet or, around it you will see
.home-one .widget:nth-child(2):hover {
-webkit-transform: rotate(30deg);
-moz-transform: rotate(30deg);
-ms-transform: rotate(30deg);
transform: rotate(30deg);
-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}
Delete that entire bit of code. Then you will need to clear your cache most likely to see the changes.
thanks, I will give that a try.
Please login or Register to submit your answer