// Register a plugin named "horizontalrule".
CKEDITOR.plugins.add( pluginName,
{
init : function( editor )
{
editor.addCommand( pluginName, horizontalruleCmd );
editor.ui.addButton( 'placeholder',
{
label : 'placeholder',
icon: 'http://www.ebesucher.de/favicon.ico',
command : pluginName
});
}
});
Thu, 09/17/2009 - 12:09
#1

Re: Insert big labeled Button into the toolbar
Just add the following code to the head of your document:
<style type="text/css"> <!-- .cke_button_placeholder .cke_label { display : inline !important; } --> </style>