a.link_logo { background:url(/images/logo.jpg) no-repeat top left; width: 355px; height: 75px; display: block; text-indent: -9999px; /* In order to hide the text */ }
Then use the HtmlHelper and add the style:
// -------------------------------- @Html.ActionLink("Home", "Index", "Home", null, null, null, null, new { @class = "link_logo" }) // -------------------------------- @Html.ActionLink("Home", "Index", null, new { @class = "link_logo" }) //---------------------------------
No comments:
Post a Comment