Skip to content

Instantly share code, notes, and snippets.

@makbeta
Last active August 29, 2015 14:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save makbeta/b083c63e2b28d63b8c82 to your computer and use it in GitHub Desktop.
Save makbeta/b083c63e2b28d63b8c82 to your computer and use it in GitHub Desktop.
Creating custom classes in CKEditor in Drupal
if(typeof(CKEDITOR) !== 'undefined') {
CKEDITOR.stylesSet.add( 'drupal', [
// Block-level styles
{ name: 'Float Left', element: 'p', attributes: { 'class': 'left'} },
{ name: 'Float Right' , element: 'p', attributes: { 'class': 'right'} },
// Inline styles
{ name: 'Small Text', element: 'small' }
] );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment