Examples
Skinning the Editor
Editor skinning is done via CSS. Rich Text Editor provides several built-in skins that are ready to use. You can choose from several predefined skins or create your own.
Demo Code:
<?php
$rte=new RichTextEditor();
$rte->Name="Editor1";
//$rte->Skin = "office2007blue";
//$rte->Toolbar = "ribbon"";
$rte->MvcInit();
?>
<?php echo $rte->GetString() ?>