IndentClasses"

This website contains links to software which is either no longer maintained or will be supported only until the end of 2019 (CKFinder 2). For the latest documentation about current CKSource projects, including software like CKEditor 4/CKEditor 5, CKFinder 3, Cloud Services, Letters, Accessibility Checker, please visit the new documentation website.

If you look for an information about very old versions of CKEditor, FCKeditor and CKFinder check also the CKEditor forum, which was closed in 2015. If not, please head to StackOverflow for support.

Line 10: Line 10:
 
</pre>  
 
</pre>  
 
We apply the file to the IndentClass option:
 
We apply the file to the IndentClass option:
<pre>FCKConfig.IndentClasses = ["mycssstyles/indent.css/"]&nbsp;;
+
<pre>FCKConfig.IndentClasses = ['mycssstyles/indent.css']&nbsp;;
 
</pre>  
 
</pre>  
 
'''NOTE''': If you use this option the settings of [[FCKeditor 2.x/Developers Guide/Configuration/Configuration Options/IndentLength|IndentLength]] and the [[FCKeditor 2.x/Developers Guide/Configuration/Configuration Options/IndentUnit|IndentUnit]] will be override.&nbsp;<br>
 
'''NOTE''': If you use this option the settings of [[FCKeditor 2.x/Developers Guide/Configuration/Configuration Options/IndentLength|IndentLength]] and the [[FCKeditor 2.x/Developers Guide/Configuration/Configuration Options/IndentUnit|IndentUnit]] will be override.&nbsp;<br>

Revision as of 14:49, 11 January 2008

IndentClasses

FCKeditor allows the use of CSS classes for block indentation.

Example:we create a CSS file called 'indent.css' with the following code:

p
{
text-indent: 70px;
}

We apply the file to the IndentClass option:

FCKConfig.IndentClasses = ['mycssstyles/indent.css'] ;

NOTE: If you use this option the settings of IndentLength and the IndentUnit will be override.