Yes, the awesome font uses ::beforepsuedo for its icons, so just do, for example:
i::before{
background:transparent;
}
However, you will most likely want to use more specificity than just i, for example:
i[class*=fa-times]::before{
background:transparent;
}
source
share