Expand How can I copy, cut and paste text to, from or within the editor?

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.

What is straightforward, however, are the replacements to these icons.

Expand Images: how big, what format is best, and how do I link to them?

The following 'rules' apply to images on this site:

Expand Images: how do I position them on the page and create a title for each of them?

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:

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.

Expand Images: how do I create a zoomable image?

Zoomable images are ones which, when clicked, expand to a larger version of that image.

To create such an image, prepare the code for the image in the normal way (see the item above), with the only difference being that the class statement must take one of three following values:

Obviously, both versions of the image must be loaded into the same folder on the server. They must share the same root name; the larger version must have a "_l" added to the end of its name. For example, "sprinkler.jpg" and "sprinkler_l.jpg".

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

Expand How are the special links made?