Created
April 11, 2016 21:11
-
-
Save bdukes/2b26a6d8d3226ef713891b216488e75d to your computer and use it in GitHub Desktop.
Replace or Remove DNN's Default CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.Client.ClientResourceManagement" Assembly="DotNetNuke.Web.Client" %> | |
<dnn:DnnCssExclude runat="server" Name="dnndefault" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Import Namespace="DotNetNuke.Web.Client" %> | |
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.Client.ClientResourceManagement" Assembly="DotNetNuke.Web.Client" %> | |
<dnn:DnnCssInclude runat="server" | |
FilePath="~/resources/shared/stylesheets/dnndefault/8.0.0/default.css" | |
Priority="<%#FileOrder.Css.DefaultCss%>" | |
Name="dnndefault" | |
Version="8.0.0" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment