Help files - if you have any options you would like to see listed email query here
(simply cut and paste code into your editor window) OLÉ Form field help in Red

Before you make changes to an OLÉ area, copy current content to a text file for backup.
 
Menu:


Basic formatting:  (^ menu)

opening &
closing tags

some tags need to have closing tags such as <b></b> or <font></font> to end formatting effect.  Some others do not such as <hr> or <p> and <br>
new line text here <br>
 this text is on a new line
paragraph text here <p>

this text is on a new paragraph

horizontal line text here <hr> there is a horizontal line before this text

bullets <li> bullet one
<li> bullet two
  • bullet one
  • bullet two
positioning

<p align="center">text or image here</align>

<p align="right">text or image here</align>

<p align="left">text or image here</align>

the Lazy Tag <pre> preformatted text in here, it allows you to 

place preformatted text within the tags, it will recognise return key stroke and white spacing between words etc

 

<pre>

 
Fonts: (^ menu)

bold

<b>bold text here</b>
italic <i>italic text here</i>
italic and bold <b><i>italic and bold</i></b>
underlines </u>underlined text here</u>

Font Colour:

click here for full colour name list
named color tags
<font color = black> black text in here </font>
<font color = white> white text in here </font>
<font color = blue> blue text in here </font>
<font color = red> red text in here </font>
<font color = green> green text in here </font>
<font color = maroon> maroon text in here </font>
<font color = purple> purple text in here </font>
<font color = navy> navy text in here </font>
<font color = lime> lime text in here </font>
<font color = aqua> aqua text in here </font>
<font color = yellow> yellow text in here </font>
<font color = teal> teal text in here </font>
<font color = silver> silver text in here </font>
<font color = gray> gray text in here </font>
<font color = fuchsia> fuchsia text in here </font>
<font color = olive> olive text in here </font>
hex colors #RRGGBB = values of Red Green and Blue (must be placed in "hex no. here" parenthesis)

#000000 = Black 
#FFFFFF = White
#666666 = med gray
#AA5522 = brown

e.g.
<font color = "#FFAAAA">text goes here</font>

highlighted text <span style="background-color: #000080">Hightlighed text goes here</span>
blockquote Indents text:
<blockquote>
text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here 
</blockquote>
comment handy if you wish to leave comments to yourself or others within the code, anything between the comment tags is not seen by the browser:

viewable text <comment> unseen comment text here <comment> goes here

heading tags heading tags from h1 - h6

<h1> heading 1 text</h1>

<h2> heading 2 text</h2>

<h3> heading 3 text</h3>

<h4> heading 4 text</h4>

<h5> heading 5 text</h5>

<h6> heading 6 text</h6>
sub and sup This tag will render <sub>the text below the line</sub> whereas 
this tag <sup>renders it above</sup> the line
 

Linking

(^ menu)
Hyper linking <a href ="URL goes here">Name of Link goes here</a>

e.g.
<a href="http://www.webpagedesignco.com/ole">OLÉ - online editor</a>

In OLÉ form use full path name ie. http:// etc

Hyper linking
an EMAIL to an image
<a href="mailto:info@url.com"><img border="0" src="image.gif"></a>

In the OLÉ upload form select INSERT IMAGE LINK then type in the "type in a URL" field type in mailto:info@url.com 

Anchors

Anchors are internal links that allow the browser to just, via a link to a specified place on a page, it is usual to have a "return" link to allow the browser to jump back to where the link originated, useful when dealing with excepts/footnotes in text or menus:

Anchor Link:
<a href="#Anchor 1">Text here</a>

Anchor Target:
<a name="Anchor 1">Anchor 1</a>

e.g.

Menu Links

Menu list 1

Menu list 2

Menu list 3


 

 

 

Anchor 1:(back) Text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here

Anchor 2:(back) Text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here

Anchor 3:(back) Text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here text goes here

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Tables

(^ menu)

Here are a few examples of simple tables, the code can be cut and pasted.

Table Tags: <table></table>
<tr> Table Row </tr>
<td> table division </td>

Set table attributes:

<table border="1"> sets the table border width as below

<table border="1" cellpadding="2" sets space around the items in the table cells

<table border="1" cellpadding="2" cellspaing="0" sets space around the cells in the table

Text here

1 cell, border 1, width 100%

code:

<table border="1" cellpadding="2" cellspacing="0" width="100%">

<tr>

<td width="100%">Text here</td>

</tr>

</table>

 

cell 1 content in here cell 1 content in here

2 cells, border 1, width 80%, cell padding 0, cell spacing 10

code:

<table border="0" cellpadding="0" cellspacing="10" width="80%">

<tr>

<td width="50%">cell 1 content in here</td>

<td width="50%">cell 2 content in here</td>

</tr>

</table>

Table Header <th></th>
Using the header tags , centres and sets the header text to bold.

Header Title
Cell content

code:

<div align="left">

<table border="1" cellpadding="4" cellspacing="0" width="60%">

<tr>

<th width="100%">Header Title</th>

<tr>

<td width="100%">Cell content</td>

</tr>

</table>

</div>

 

cell 1 content here cell 2 content here
cell 3 content here cell 4 content here

2 cells, border 0, width 80%, cell padding 0, cell spacing 10, 
table background colour Aqua, 

Table centred <div align="center"></div>

code:

<div align="center">

<table border="1" cellpadding="10" cellspacing="0" width="100%" bgcolor="#00FFFF">

<tr>

<td width="50%">cell 1 content here</td>

<td width="50%">cell 2 content here</td>

</tr>

<tr>

<td width="50%">cell 3 content here</td>

<td width="50%">cell 4 content here</td>

</tr>

</table>

</div>

Centering contents in a table: <td  align="center">

centred text here

 code:


<div align=
"center">  {centers the whole table}

<table border="1" cellpadding="10" cellspacing="0" width="90%" bgcolor="#00FFFF">

<tr>

<td  align="center">centred text here</td> {centers the text within the cell}

</tr>

</table>

</div>

 

The examples above are simple but many tables can be complicated to construct, consider this one, a table header, a nested table within a table:

Header Text here
cell contents cell contents cell contents cell contents
cell contents cell contents

cell contents

cell contents

cell contents

cell contents
cell contents cell contents
cell contents cell contents cell contents cell contents

Consider the code for this table and they get much more complicated than this!

code:

<div align="center">

<table border="0" cellpadding="20" cellspacing="0" width="90%" bgcolor="#C0C0C0">

<tr>

<td width="100%">

<div align="center">

<table border="0" cellpadding="6" cellspacing="6" width="90%" bgcolor="#808080">

<tr>

<th width="100%" colspan="4" bgcolor="#E9EFF3">Header

Text here</th>

</tr>

<tr>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

</tr>

<tr>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

<td width="50%" bgcolor="#C0C0C0" colspan="2" rowspan="2">cell contents

<p>cell contents</p>

cell contents

<p>cell contents</p>

</td>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

</tr>

<tr>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

</tr>

<tr>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

<td width="25%" bgcolor="#C0C0C0">cell contents</td>

</tr>

</table>

</div>

</td>

</tr>

</table>

</div>


*Be warned!!!!

Tables when used within the OLÉ system can effect the main structure of the site, so if this happens remove the offending table code and correct.  A few points to watch out for:

  • Never set the table width or cell width to more than 100%
  • Never set the table width to more than the pixel width of the OLÉ edit area
  • If you are inserting a table into a page that already contains text, then MAKE A COPY of the page code (into a text file and save) PRIOR to inserting table code, so if things go wrong you have a back up.