You use the keyboard sequences of Ctrl-c (to copy), Ctrl-x (to cut), and Ctrl-v (to paste). The standard toolbar icons have been turned off - in a website editor, they are more trouble than they are worth.
- If your browser is Internet Explorer, they allow you to inadvertantly paste potentially damaging code into the website whenever you copy from a Word document and paste into the editor.
- If your browser is Firefox, you cannot use these functions unless you alter your browser's security functions - and this is not a straightforward procedure.
What is straightforward, however, are the replacements to these icons.
- To copy something from Word (or any other wordprocessor) and paste it into the online editor:
- Copy your text in your normal way.
- Click in the main content space of the online editor
- Paste the text into the editor using keyboard sequence of Ctrl-v (Ctrl-v means depress the Ctrl key and, keeping it depressed, tap the "v" key)
- To copy something from within your document in the online editor to somewhere else in the document:
- Highlight the area you want to copy by dragging your mouse from the beginning to the end of the section
- Copy that section of text by using the keyboard sequence Ctrl-c (i.e. depress the Ctrl key and with it depressed, tap "c").
- Position your cursor at the place in the document where you want to copy the section to (i.e. paste)
- Paste the copied section using the keyboard sequence Ctrl-v.
- To cut something from within your document in the online editor and paste it somewhere else in the document:
- Highlight the area you want to copy by dragging your mouse from the beginning to the end of the section
- Cut that section of text by using the keyboard sequence Ctrl-x
- Position your cursor at the place in the document where you want to paste the section
- Paste the copied section using the keyboard sequence Ctrl-v.
Positioning images on the page requires a class statement to be manually added to the HTML image tag. You can do this after you've inserted an image tag using the WYSIWYG editor, or directly when you enter an image tag through the HTML editor.
The HTML image tag is structured as:
<img class="___" title="" src="../images/folderName/fileName" alt="" width="xxx" height="xxx" />
In order to be positioned on the page, the class statement must take one of three values:
- imgposr = position on the right and wrap text
-
imgposl = position on the left and wrap text
-
imgposc = centre on the page, no wrapping
Text entered into the title statement will be extracted and placed immediately beneath the image in the form of a title. The title statement will be automatically inserted into the alt statement, if the latter is empty.
This positioning and image titling is done by javascript on the user's side only - the functionality is not currently available on in the preview tab of the editor