I plan to make a RichEditor on ASP.NET, Design mode only.
Ideally, the main box border should always be a simple silver color 1px border, always. When user click the text area, the tool bar should show a band of icons.
I can make the main box with simple silver 1px border either in editing or non-editing by this:
EditModes="Design"
EnableResize="False" EnableTheming="False" Height="600px" Skin="Vista"
ToolbarMode="ShowOnFocus" Width="500px" BorderColor="Silver" BorderWidth="1px" EnableAjaxSkinRendering="True" EnableEmbeddedBaseStylesheet="True" EnableEmbeddedSkins="False" ToolsWidth="500px" BorderStyle="Solid"
but this also makes the toolbar looks weired (no icons anymore,but tooltips still there).
How do I make the toolbar still show properly but only main box without skins?
Thanks a lot