I have implemented CSS on my master page and it is displaying properly, however, when I try to apply the same CSS to a specific web form, the styles are not showing up.
Even though I have added the necessary icon code to this web form, the icon is not visible on the site. I am using font-awesome.css in my content folder for the icons but I cannot figure out why they are not appearing on this particular web form.
<link href="../Content/font-awesome.min.css" rel="stylesheet" />
<ItemTemplate>
<tr>
<td><%# Eval("Name") %></td>
<td><%# Eval("Email") %></td>
<td> <%# Eval("DateRegistered", "{0: MMMM dd, yyyy}") %></td>
<td> <%# Eval("Status")%></td>
<td>
<a href='CustomerDetails.aspx?id=<%# Eval("CustomerID") %>'
class="btn btn-xs"
title ="View Details">
<i class="fa fa-edit"></i>
</a>
</td>
</tr>
</ItemTemplate>