I have followed the instructions on
http://www.telerik.com/help/aspnet-ajax/radformdecorator-creating-custom-skins.html to create a custom stylesheet but it does not seem to be applying. I have created a directory called CustomSkins and copied the FormDecorator.Forest.css file and the FormDecorator directory to it, just as a test I added a link to the css and set EnableEmbeddedSkins=False. Shouldn't that pick up and apply the Forest colors and look the same as if embedded skins was turned on and selected Forest. But in my page I'm getting no stylesheet settings. What we want to be able to do is us all the telerik styles but add items to the telerik stylesheet to handle things we have already incorporated in our apps.
<
head runat="server">
<title></title>
<link href="CustomSkins/FormDecorator.Forest.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<div>
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
<telerik:RadSkinManager ID="radskinMgr" runat="server" ShowChooser="true"></telerik:RadSkinManager>
<telerik:RadFormDecorator ID="RadFormDecorator1" Runat="server" DecoratedControls="All" EnableEmbeddedSkins="false" />
<br /><br />
<h2>This is a test page for new styles and preferences - COMING SOON IN 2011!!</h2>
<hr />
<h1>ODE STYLES</h1>
<h1 class="announcement">TEXT Test for H1 - ODE Class ANNOUNCEMENT</h1>
<h2 class="sidebar">TEXT Test for H2 - ODE Class SIDEBAR</h2>
<h3 class="odehilite">TEXT Test for H3 - ODE Class ODEHILITE</h3>
<b class="small">TEXT Test for ODE Class SMALL</b><br />
<b class="larger">TEXT Test for ODE Class LARGER</b><br />
<b class="largest">TEXT Test for ODE Class LARGEST</b>
<h4>Text for H4</h4>
</div>
</form>
</body>