Support » Themes and Templates » CSS Hover help

  • So I’m trying to change the background of the color when a person hovers over an image.. using this.

    }

    .recent-donator .image {
    -webkit-transition: 1s all ease-in-out;
    -moz-transition: 1s all ease-in-out;
    -o-transition: 1s all ease-in-out;
    transition: 1s all ease-in-out;
    }
    .recent-donator .image:hover {
    -webkit-transform: rotate(360deg) scale(1);
    -moz-transform: rotate(360deg) scale(1);
    -o-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
    }

    Please help if you can.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘CSS Hover help’ is closed to new replies.