Headlines
Headlines can be added in a few places. The most common are in the headline element:

and the text editor:


Output:

H1 Headline

H2 Headline

H3 Headline

H4 Headline

H5 Headline
H6 Headline

Custom Styles
Custom styles can be added by using the css class in HTML or using them through the text editor:


Output:

information text

blue text

dark blue text

red text

dark red text

green text

dark green text

Submit Button

Box Column 2 - Floating Items in 2 Columns on the page
There are two main ways to float items by 2 columns. Use option #1 in most cases. When option #1 will not work, try option #2.

Option #1
Before making HTML divs (option #2), try to add "box_col2" into each elements CSS field like the example:


Option #2
In some rare cases you won't always be able to use the CSS class field for each element. Instead you may have to create a div that surrounds each element like the example below.

<div class="box_col2"> (your item) </div>
<div class="box_col2"> (your item) </div>

Box Column 3 - Floating Items in 3 Columns on the page
There are two main ways to float items by 3 columns. Use option #1 in most cases. When option #1 will not work, try option #2.

Option #1
Before making HTML divs (option #2), try to add "box_col3" into each elements CSS field like the example:


Option #2
In some rare cases you won't always be able to use the CSS class field for each element. Instead you may have to create a div that surrounds each element like the example below.

<div class="box_col3"> (your item) </div>
<div class="box_col3"> (your item) </div>
<div class="box_col3"> (your item) </div>