0

I have 3 social media buttons on the right side of my website that rotate on hover a bit. And whenever anyone hovers over them they make the font of the website almost bold looking while on hover. Its only happening with these images and its quite annoying. Does anyone have any guesses as to why this might be happening?

Heres the html/CSS im using for each button:

<div id="socialicon1"><a href="http://facebook.com/sentinelgaming" target="_blank"><img src="http://files.enjin.com/202624/social%20media/facebook%20square.png" width="50" height="50" alt="facebook button"/></a></div>

#socialicon1  img {
    position: fixed;
    top: 350px;
    right: 13px;
    -webkit-transition: all 0.5s ease-out; 
    -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; 
    }

#socialicon1 img:hover { 
    -webkit-transform: rotate(-9deg); 
    -moz-transform: rotate(-9deg); 
    -o-transform: rotate(-9deg);
}

And this is the website itself so you can take a look at it: http://www.sentinelgaming.net

Thanks a bunch in advance!

Josh Woelfel
  • 1,919
  • 4
  • 17
  • 16

1 Answers1

1

This is a known issue with webkit: http://css-tricks.com/forums/discussion/18538/transforms-cause-font-smoothing-weirdness-in-webkit/p1

BBagi
  • 2,035
  • 1
  • 19
  • 23