I'm having an issue with the CSS in my ActionLink on the _Layout.cshtml file.
I changed the "Your logo here" text to reflect an image drawn in the background through a CSS class, however it seems to not load the picture..
<p class="site-title">@Html.ActionLink(" ", "Index", "Home", null, new { @class = "sitelogo" })</p>
The CSS is:
.sitelogo {
background: url("../Images/topLogo.png") no-repeat center right;
display: block;
height: 84px;
width: 585px;
The box is displayed in a block with the height and width dimensions, however the picture doesn't display, yet if I use FireBug inspect CSS it pulls the image when I mouse-over the URL in the CSS just fine. Am I missing something painfully obvious with this?