How to eliminate the underline effect that happens when you pass over the mouse pointer? [closed]

0

I have a problem with icons to social networks. When you pass over the mouse, in addition to changing color, a black line appears on the icons themselves (I think it is an underline).

I would like to resolve it through CSS.

The codes of the buttons are:    

It's Wordpress, the theme is Twenty Seventeen and the plugin I'm using is Social Icons Widget by WPZOOM.

In: Hover applies box-shadow: inset 0 0 0 rgba (0, 0, 0, 0), 0 3px 0 rgba (0, 0, 0, 1); ...

    
asked by pathsoldier 16.06.2017 в 12:58
source

1 answer

1

Have you tried text-decoration: none in this group of your css:?

.zoom-social_icons-list__item a:hover .socicon,
.zoom-social_icons-list__item a:hover .dashicons,
.zoom-social_icons-list__item a:hover .genericon,
.zoom-social_icons-list__item a:hover .fa
{
    opacity: 0.8;
    text-decoration: none;   
}
    
answered by 16.06.2017 в 13:31