Hello,
Here's a piece of my HTML code
<div id = "mydiv">
<% = Html.ActionLink("Some Text","SomeAction")%>
</div>
I'd like to style it in white so that it doesn't conflict with the background, which is also blue. So I did this:
#mydiv {background-color:blue;}
#mydiv a:link { color:white}
But, it doesn't work -- the color it's still blue. How can I do it? Maybe, I just did not write well the selectors.
Thanks for helping.