Is there a method to decrease the weight of one of the FontAwesome icons on my website? It appears much heavier than the font style I am currently utilizing. Here is how it currently displays:
:
Not very appealing, right? I attempted adjusting the font-weight attribute in the CSS like this:
.tag .icon-remove {
font-weight: 100;
}
Even though the attribute seems correctly set in the CSS, it does not seem to have any effect - the icon still looks as heavy as before. I also experimented with font-weight: lighter
and -webkit-text-stroke-width: 1px
but saw no changes.
Does anyone know of a way to reduce the heaviness of the icon? According to the documentation "Anything you can do with CSS font styles, you can do with Font Awesome" but I haven't been able to figure out how to achieve this adjustment.