This is a migrated thread and some comments may be shown as answers.

Design Mode,..?Possible to remove huge "footer/module" ..as per HTML mode??

2 Answers 46 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Neal
Top achievements
Rank 1
Neal asked on 07 Jan 2009, 01:38 PM
Hi,

In Design mode there is a huge footer area beneath the content area, Is it possible to remove / hide this as per HTML mode?
If, so ..How please.

ManyThanks
Neal

2 Answers, 1 is accepted

Sort by
0
Accepted
Serrin
Top achievements
Rank 1
answered on 07 Jan 2009, 07:59 PM
Hey Neal,

For this your best bet is to use a custom ToolsFile.xml to specify which tool options and modules you are looking for.  Some helpful links for this include:

Introduction to Toolbars
Types of Modules

The basic idea with the custom tool file is to only include what you want (and thereby you opt to not include specific modules, etc.).  Here is a sample of a basic text entry toolsfile I use that eliminates a lot of the extras:

<?xml version="1.0" encoding="utf-8" ?> 
<root> 
  <tools name="MainToolbar" enabled="true">  
    <tool name="Bold" shortcut="CTRL+B"/>  
    <tool name="Italic" shortcut="CTRL+I"/>  
    <tool name="Underline" shortcut="CTRL+U"/>  
    <tool name="Indent" /> 
    <tool name="Outdent" /> 
    <tool separator="true"/>  
    <tool name="SpellCheck" /> 
    <tool name="FindAndReplace" /> 
    <tool separator="true"/>  
    <tool name="Cut" /> 
    <tool name="Copy" /> 
    <tool name="Paste" /> 
    <tool separator="true"/>  
    <tool name="Undo" /> 
    <tool name="Redo" /> 
  </tools> 
</root>  

-Serrin
0
Neal
Top achievements
Rank 1
answered on 08 Jan 2009, 08:16 AM
Thanks, worked a treat
(also noticed basic tools on the demo did it), so got the xml files for basic and full amended for my use and Spot on.

Tags
Editor
Asked by
Neal
Top achievements
Rank 1
Answers by
Serrin
Top achievements
Rank 1
Neal
Top achievements
Rank 1
Share this question
or