There are two simple steps involved in order to add a new CSS class in RTE.
- Add <class> element in Website\sitecore\shell\Controls\Rich Text Editor\ToolsFile.xml :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters.... <paragraphs></paragraphs> <classes> <class name="customeClass" value=".customeClass" /> </classes> <dialogParameters></dialogParameters> <languages></languages> <contextMenus></contextMenus> </root> .... - Now add the definition of that CSS class in Website\default.css file:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters.... .customeClass{ padding-right:20px; padding-left:20px; } .... - Make sure to delete the cache, and you can see newly added customeClass CSS class in rich text editor drop-down.
Baraa Masri
Email: Bmasri@tanasuk.com
Twitter: @Bara_Masri