Last active
September 3, 2016 12:26
-
-
Save igotit-anything/e78a9f2d2fa5456cb0ca476714614968 to your computer and use it in GitHub Desktop.
CKEditor. apply my own css file not default contents.css.
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
<script> | |
CKEDITOR.replace('editor1',{ | |
contentsCss: '../CSS/ckeditor_specific.css', // apply my own css. not default contents.css | |
width: 660, // contents width final web page(600) + editor margin(20)*2 + vertical scroll bar(20) | |
height: 500 | |
}); | |
</script> | |
// detail about contentsCss -> http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-contentsCss |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment