I am using an i class=fa-arrow-circle-left
On one of my pages it is green (how I want). On another page it is black. I'm guessing something is getting overriden for the color. What am I missing?
I looked through the SO articles such as: Can I change the color of Font Awesome's icon color?
How I'd like it to look(green): Green
How it looks(black): Black
aspx file with black: (note that this did not have inline styling, that is just something I tried in hopes of making it green, but it still shows up as black)
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="notworking.aspx.cs" Inherits="project.folder.file" %>
<p><i class="fa fa-arrow-circle-left" {color: green}></i><a href=""> Member Summary</a></p>
aspx file with green:
<p><asp:LinkButton ID="lnkButtonBackToSearch" runat="server" OnClick="lnkButtonBackToSearch_Click" Visible="false"><i class="fa fa-arrow-circle-left"></i> Back To Search</asp:LinkButton></p>
I also looked at the css file but the only thing I see with black is:
body {
color: #000000;