Title: hover: unset
Last modified: September 8, 2017

---

# hover: unset

 *  Resolved [Flyhead](https://wordpress.org/support/users/bukers/)
 * (@bukers)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/hover-unset/)
 * Hello, cool plugin. Thank you!
 * You have given clear instructions as to customise the icon colour universally.
   This is nice. However, I’d very much like each icon to return to its original
   colour on hover. “unset”? Is there a simple javascript to do that or do I have
   to create the css for each individual icon?
 * Thank you in advance for the help

Viewing 1 replies (of 1 total)

 *  Plugin Author [micropat](https://wordpress.org/support/users/micropat/)
 * (@micropat)
 * [8 years, 9 months ago](https://wordpress.org/support/topic/hover-unset/#post-9481136)
 * Hello! Here’s some example Additional CSS you can use to set a uniform icon color
   for your AddToAny buttons, then revert to the original icon color on `:hover`
   and `:active` states:
 *     ```
       /* Colorize AddToAny icon SVGs */
       .a2a_kit a .a2a_svg svg,
       .a2a_menu a .a2a_svg svg {
           background-color: pink;
       }
   
       /* Remove color on hover */
       .a2a_kit a:active .a2a_svg svg,
       .a2a_kit a:hover .a2a_svg svg,
       .a2a_menu a:active .a2a_svg svg,
       .a2a_menu a:hover .a2a_svg svg {
           background-color: transparent;
       }
   
       /* Override default opacity on hover */
       .a2a_kit a:active .a2a_svg,
       .a2a_kit a:hover .a2a_svg,
       .a2a_menu a:active .a2a_svg,
       .a2a_menu a:hover .a2a_svg {
           opacity: 1 !important;
       }
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘hover: unset’ is closed to new replies.

 * ![](https://ps.w.org/add-to-any/assets/icon.svg?rev=972738)
 * [AddToAny Share Buttons](https://wordpress.org/plugins/add-to-any/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/add-to-any/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/add-to-any/)
 * [Active Topics](https://wordpress.org/support/plugin/add-to-any/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/add-to-any/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/add-to-any/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [micropat](https://wordpress.org/support/users/micropat/)
 * Last activity: [8 years, 9 months ago](https://wordpress.org/support/topic/hover-unset/#post-9481136)
 * Status: resolved