I'm using fontello font-icons. They work perfectly except with Internet Explorer. They do not react also with the hover status and so... The problem I'm getting at this moment is a trange underline under the font-icon.
I already tried text-decoration, border-bottom...
Do anybody have any solution for this:
This is my CSS code, I'm using SASS in this project:
nav{
a{
width: 60px;
height: $height-header-nav-tablet;
float: left;
line-height: 50px;
text-align: center;
@media screen and (min-width : $media-tablet-min) and (max-width : $media-tablet-max) {
width: $width-header-link-nav-tablet;
}
i.icon-menu{
font-size: 30px;
}
&:link,
&:visited{
color: $blue-dark-takeda;
@include border-gradient;
text-shadow: 1px 1px rgba(28, 42, 83, 0.2);
}
&:hover{
color: $white-takeda;
background-color: $blue-dark-takeda;
text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}
&:active{
@include background-image(radial-gradient(45px 45px, $blue-dark-takeda 25px, #111931 40px));
}
&.active {
color: $white-takeda;
background-color: $blue-dark-takeda;
text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
@include background-image(radial-gradient(45px 45px, $blue-dark-takeda 25px, #111931 40px));
}
}
}