Can I change the color of Font Awesome's icon color?

HUSTEN

I have to wrap my icon within an <a> tag for some reason.
Is there any possible way to change the color of a font-awesome icon to black?
or is it impossible as long as it wrapped within an <a> tag? Font awesome is supposed to be font not image, right?

enter image description here

<a href="/users/edit"><i class="icon-cog"></i> Edit profile</a>
Evan Hahn

This worked for me:

.icon-cog {
  color: black;
}

For versions of Font Awesome above 4.7.0, it looks this:

.fa-cog {
  color: black;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

change the color of font awesome's exclamation triangle icon

From Dev

Change color when hover a font awesome icon?

From Dev

How to change font awesome icon hover color?

From Dev

How to change font-awesome icon color when it is active

From Dev

How to change font-awesome icon color when it is active

From Dev

Font-Awesome Icons, Change Color In The Middle of The Icon (The Text) On Hover

From Dev

How do I give a font awesome icon a background color?

From Java

How can I change an icon and text's color on hover?

From Dev

Can I change the font color on a portion of a string?

From Dev

Can I change the font color on a portion of a string?

From Dev

How to change color of font awesome icons

From Dev

Change color of Font Awesome icons when they selected

From Dev

font awesome - stack circle color change on hover

From Dev

Font Awesome Background color

From Dev

Ubuntu Mate: Change font color of Desktop Icon

From Java

How to style icon color, size, and shadow of Font Awesome Icons

From Dev

Can't change the font color

From Dev

how to change the color of multi color glyphicons (icon font)

From Dev

How can I change the tree's color?

From Dev

How can I change text/icon color in Action Mode?

From Dev

How can I change the background color inside the icon?

From Dev

Font awesome - change the inner "i" color in class="fa-info-circle"

From Dev

can I change the font color of the datePicker in iOS7?

From Dev

Can I change background and font color of address bar at Chrome?

From Dev

How can I change the tooltip color or font in Ambiance?

From Dev

How to change color of Font Awesome stacked icons on hover

From Dev

Angular: How May I change Font Awesome icon and Text on condition

From Dev

Can't change icon color in action bar

From Dev

Can't change icon color in action bar

Related Related

  1. 1

    change the color of font awesome's exclamation triangle icon

  2. 2

    Change color when hover a font awesome icon?

  3. 3

    How to change font awesome icon hover color?

  4. 4

    How to change font-awesome icon color when it is active

  5. 5

    How to change font-awesome icon color when it is active

  6. 6

    Font-Awesome Icons, Change Color In The Middle of The Icon (The Text) On Hover

  7. 7

    How do I give a font awesome icon a background color?

  8. 8

    How can I change an icon and text's color on hover?

  9. 9

    Can I change the font color on a portion of a string?

  10. 10

    Can I change the font color on a portion of a string?

  11. 11

    How to change color of font awesome icons

  12. 12

    Change color of Font Awesome icons when they selected

  13. 13

    font awesome - stack circle color change on hover

  14. 14

    Font Awesome Background color

  15. 15

    Ubuntu Mate: Change font color of Desktop Icon

  16. 16

    How to style icon color, size, and shadow of Font Awesome Icons

  17. 17

    Can't change the font color

  18. 18

    how to change the color of multi color glyphicons (icon font)

  19. 19

    How can I change the tree's color?

  20. 20

    How can I change text/icon color in Action Mode?

  21. 21

    How can I change the background color inside the icon?

  22. 22

    Font awesome - change the inner "i" color in class="fa-info-circle"

  23. 23

    can I change the font color of the datePicker in iOS7?

  24. 24

    Can I change background and font color of address bar at Chrome?

  25. 25

    How can I change the tooltip color or font in Ambiance?

  26. 26

    How to change color of Font Awesome stacked icons on hover

  27. 27

    Angular: How May I change Font Awesome icon and Text on condition

  28. 28

    Can't change icon color in action bar

  29. 29

    Can't change icon color in action bar

HotTag

Archive