Skip to content

Add New Skin to Ckeditor

Abhinay Kumar edited this page Apr 15, 2016 · 1 revision

Steps to add new skin to Ckeditor:

  • Download the skin from Here.

  • Place it under ckeditor/skins folder, if you dont have skins folder then you need create one.

  • Add below line to ckeditor/config.js file.

    CKEDITOR.editorConfig = function (config) { config.skin = 'bootstrapck'; }

    Note: bootstrapck is the name of the skin.

  • Add //= require_tree ./ckeditor to your application.js file. Also, you have to write //= require_tree . before //= require_tree ./ckeditor in order to complie and load other js files in the directory.

Clone this wiki locally