Hi Joel, For DNN2.1.2 you need the 2.5.3 version of CSS Skins. The level at which you change depends on what skin you are using. You can have skins in the _Default folder or in the individual portal folders. In one of those skins folders you will find the .ascx file from the skin you are using. In that file at the top is where you make the inheritance change. One thing that might help is to get familiar with the skinning in DotNetNuke and how it works. There is a document on skinning in the documents folder of your DotNetNuke install. It sounds like what you are wanting to do is change a skin that you are already using so that it can use the CSS Editor. You can do that by placing two lines of code in your .ascx file for the skin. One at the top where the controls are registered: <%@ Register TagPrefix="SnapsisDNN" TagName="CSSEditor" Src="~/DesktopModules/SnapsisDNN/CSSEditor/CSSEditor.ascx"%> And the other right after all of the registrations: <SnapsisDNN:CSSEditor runat="server" id="CSSEditor" /> I agree, I need to make some documentation and tutorials that will make all of this a little easier to follow for the beginner. Please feel free to ask more questions here in the forums though as it may benefit others until I can do that. |