Since you are working with Drupal, ckeditor.styles.js is the file you are looking for, this will allow you to add / edit / delete entries in the Styles menu.
Comment on any posts you don't want, and use something like this to add a new paragraph format:
{ name : 'Links', element : 'p', attributes : { 'class' : 'links' } },
This will add the CSS links class to any paragraph you want, and you can define the class in the theme stylesheet. Be sure to define the class in ckeditor.css if you do not see the changes applied to the CKEditor instance.
Alternatively, you can also directly apply inline styles:
{ name : 'Links', element : 'p', attributes : { 'style' : 'font: bold 14px Arial, sans-serif; color: red;' } },
But the first method is clearly more flexible / clean.
Make sure you clear your Drupal and / or browser cache if you donโt see that your changes are displayed immediately.
Spencer brooks
source share