Hi
I have several inline instances that I'd like to define a default font family, font size and colour for them, such as:
CKEDITOR.inline( editable_1, {
toolbar: [
['Bold','Italic','Underline'],
['NumberedList','BulletedList'],
['JustifyLeft','JustifyCenter','JustifyRight'],
['Undo','Redo'],
'/',
['TextColor','Font','FontSize']
],
// need Helvetica Nueue as defalt font
// need #DDDDDD as default font colour
// can't use the CSS file as this is dynamic
font_names: 'Helvetica Nueue/Helvetica Nueue',
font_defaultLabel: 'Helvetica Nueue'
});
Any ideas on how to achieve this?