From 51ba28379b31d8fd5191c5a9e95b3fe54fda1320 Mon Sep 17 00:00:00 2001 From: petermartin Date: Thu, 31 Jan 2013 12:13:21 -0500 Subject: [PATCH] Added backslash to add_editor_style Editor style css wasn't being applied for me until adding the backslash. --- lib/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/init.php b/lib/init.php index 65c440c..3314679 100644 --- a/lib/init.php +++ b/lib/init.php @@ -22,7 +22,7 @@ function roots_setup() { // add_theme_support('post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'audio', 'chat')); // Tell the TinyMCE editor to use a custom stylesheet - add_editor_style('assets/css/editor-style.css'); + add_editor_style('/assets/css/editor-style.css'); }