Search code examples
htmlcssaddthis

Addthis Bug on Hover


I downloaded this plugin called addthis : https://www.addthis.com/ and I installed it on my website. The problem is here, when I hover over a button, it moves to a side. This is not normal, and the only style I am giving it is for the layout and not any hover styles.


Solution

  • It's in your style.css

    a:hover
    {
        width: 78px;
        height: 50px;
    }
    

    This is what's giving you the problem. GL!