Hi guys,
I ran into a problem when I tried to configure the rich text editor to provide some site specific styles for my contributors.
I have changed the configuration settings to:
theme : "advanced",
plugins : "table,advhr,farcrycontenttemplates,advimage,advlink,preview,zoom,searchreplace,print,contextmenu,paste,directionality,fullscreen",
theme_advanced_buttons2_add : "separator,farcrycontenttemplates",
theme_advanced_buttons3_add_before : "tablecontrols,separator",
theme_advanced_buttons3_add : "separator,fullscreen,pasteword,pastetext",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
theme_advanced_resize_horizontal : true,
theme_advanced_resizing : true,
extended_valid_elements: "code,colgroup,col,thead,tfoot,tbody,abbr,blockquote,cite,button,textarea[name|class|cols|rows],script[type],img[style|class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name]",
remove_linebreaks : false,
relative_urls : false,
content_css : "/css/editor.css"Within editor.css, I put sth like:
* { margin:0; padding:0; }
.TextStandard {
color: #757575;
font-size: 12px;
}
Then I reload the configuration as well as the application.
I can see the style TextStandard appearing now in the editor:
Then I decided to remove the style 'TextStandard' and apply the styles to more generic tags like <p>, <h1>, <h2> etc.
I removed the the class 'TextStandard' from my stylesheet, and put stuff like this:
* { margin:0; padding:0; }
p {
color: #757575;
font-size: 12px;
}
h1 {
color: #313030;
font-size: 2em;
font-weight: bold;
}
h2 {
color: #313030;
font-size: 1.5em;
font-weight: bold;
}
h3 {
color: #313030;
font-size: 1.3em;
font-weight: bold;
}
h4 {
color: #313030;
font-size: 1em;
font-weight: bold;
}
h5 {
color: #313030;
font-size: 0.8em;
font-weight: bold;
}
h6 {
color: #313030;
font-size: 0.7em;
font-weight: bold;
}
After that, no matter how I reload the configuration and application scope, I still get that styles showing in the rich text editor. I can't get rid of it.
Obviously there is sth wrong there. Did anyone have the same problem before and a fix to this please?
--
Best regards,
Xiaofeng,^_^