silverstripe-framework/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/05_Typography.md

43 lines
1.2 KiB
Markdown
Raw Normal View History

2014-11-07 20:43:57 +01:00
title: WYSIWYG Styles
summary: Add custom CSS properties to the rich-text editor.
# WYSIWYG Styles
SilverStripe lets you customise the style of content in the CMS. This is done by setting up a CSS file called
2014-11-07 20:43:57 +01:00
`editor.css` in either your theme or in your `mysite` folder. This is set through
```php
2017-10-26 02:22:02 +02:00
use SilverStripe\Forms\HTMLEditor\HtmlEditorConfig;
2017-08-07 05:11:17 +02:00
HtmlEditorConfig::get('cms')->setOption('content_css', project() . '/css/editor.css');
```
2014-11-07 20:43:57 +01:00
Will load the `mysite/css/editor.css` file.
If using this config option in `mysite/_config.php`, you will have to instead call:
```php
2017-08-07 05:11:17 +02:00
HtmlEditorConfig::get('cms')->setOption('content_css', project() . '/css/editor.css');
```
2014-11-07 20:43:57 +01:00
Any CSS classes within this file will be automatically added to the `WYSIWYG` editors 'style' dropdown. For instance, to
add the color 'red' as an option within the `WYSIWYG` add the following to the `editor.css`
```css
2017-08-07 05:11:17 +02:00
.red {
color: red;
}
```
2014-11-07 20:43:57 +01:00
<div class="notice" markdown="1">
After you have defined the `editor.css` make sure you clear your SilverStripe cache for it to take effect.
</div>
## API Documentation
* [HtmlEditorConfig](api:SilverStripe\Forms\HTMLEditor\HtmlEditorConfig)