Hi All,
I'm trying to load the CSS list in the Telerik editor with some customer styles. The default list is way too long and I need to restrict the list to only styles that we're approved.
This page has some details about this exact topic but it's not working:
http://www.dotnetnuke.com/Resources/W...
I created a simple CSS file with the following:
body,html
{
background-color:#fff;
text-align:left;
}
.RedRequiredText
{
font: bold 12px 'Trebuchet MS', 'Helvetica Neue', Arial, Sans-Serif;
color: #ff0000;
}
Then I located this file:
/Providers/HtmlEditorProviders/Telerik/Config/ConfigDefault.xml
And added this line right after the opening <configuration> tag:
<property name="CssFiles">/dnn613/portals/0/RadEditor.css</property>
My DNN install is c:/websites/dnn613 and the virtual directory in IIS is called dnn613.
I've tried placing my CSS file in numerous directories and even changed the pointer to it but it still won't load. The default list of styles populate the CSS dropdown list.
What am I doing wrong?
Thanks,
Mark