From a1e343629b951fda7f2ec10c7b93c24bb25d08a4 Mon Sep 17 00:00:00 2001 From: Christopher Darling Date: Mon, 26 Oct 2015 11:02:47 +0000 Subject: [PATCH] DOCS: correct config setting for custom editor.css see https://github.com/silverstripe/silverstripe-framework/blob/a964e7636e25879def67648bee2ba127ed5d1b7f/admin/code/LeftAndMain.php#L287-L308 --- .../15_Customising_the_Admin_Interface/05_Typography.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/05_Typography.md b/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/05_Typography.md index 3c53ceb09..f86635b0b 100644 --- a/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/05_Typography.md +++ b/docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/05_Typography.md @@ -7,7 +7,7 @@ SilverStripe lets you customize the style of content in the CMS. This is done by `editor.css` in either your theme or in your `mysite` folder. This is set through :::php - HtmlEditorConfig::get('cms')->setOption('ContentCSS', project() . '/css/editor.css'); + HtmlEditorConfig::get('cms')->setOption('content_css', project() . '/css/editor.css'); Will load the `mysite/css/editor.css` file.