I've been working on an MVC 2 Project and ran into an issue. I made changes to the attributes of an id in the Site.css file, specifically changing the color from White to Red. However, when I run the application, the changes are not reflected on the view. I've tried clearing the cache in IE and pressing F5, but it's not working. It's a simple issue, but I would appreciate any help. Below is the code snippet:
#logindisplay
{
font-size:1.1em;
display:block;
text-align:left;
margin:10px;
color:Red;
}
master page
<div id="logindisplay">
<%: Html.ActionLink("Log in","Login","Accountnew") %>
<%-- <%: Html.ActionLink("Login","Create","User") %>--%>
</div>