HomeBadge animation

QuestionsCategory: QuestionsHomeBadge animation
Blossom Chambers asked 6 years ago

Hi, how do I remove the animation aspect of the home badge please?

1 Answers
Jennifer Staff answered 6 years ago

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.

Blossom Chambers replied 6 years ago

thanks, I will give that a try.