TYPO3 Content Elements based on Fluid 

Extension key

fluid_styled_content

Package name

typo3/cms-fluid-styled-content

Version

13.4

Language

en

Author

TYPO3 contributors

License

This document is published under the Open Content License.

Rendered

Tue, 20 Jan 2026 07:24:06 +0000


This extension provides Fluid templating for TYPO3 content elements.


Table of Contents:

Introduction 

What does it do? 

fluid_styled_content handles the rendering of TYPO3's default content elements and comes bundled as part of the Core. These content elements are rendered using the Fluid templating engine.

These content elements can be used as-is and can also be modified depending on your requirements. You are not bound to using only these content elements. It is possible to add new content elements to the existing set. This document details how to use, adapt, enhance and create new content elements.

Optionally fluid_styled_content offers basic CSS that takes care of positioning content according to fields chosen in the backend.

For example, if you create a content element of type Text with Images with a centered headline, a subheader, some text and an image with the position in text, right:

The output of the HTML is rendered by the Fluid template typo3/sysext/fluid_styled_content/Resources/Private/Templates/Textpic.html which in turn includes several partials.

See the following, shortened code example:

<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" data-namespace-typo3-fluid="true">
<f:layout name="Default" />
<f:section name="Header">
    <f:render partial="Header/All" arguments="{_all}" />
</f:section>
<f:section name="Main">

    <div class="ce-textpic ce-{gallery.position.horizontal} ce-{gallery.position.vertical}">
        <f:render partial="Media/Gallery" arguments="{_all}" />

        <f:if condition="{data.bodytext}">
            <div class="ce-bodytext">
                <f:format.html>{data.bodytext}</f:format.html>
            </div>
        </f:if>
    </div>

</f:section>
</html>
Copied!

The HTML output then looks like this:

<div id="c1" class="frame frame-default frame-type-textpic frame-layout-0">
  <header>
    <h2 class="ce-headline-center">
      A centered headline
    </h2>
    <h3 class="ce-headline-center">
      A subheader
    </h3>
  </header>
  <div class="ce-textpic ce-right ce-intext">
    <div class="ce-gallery" data-ce-columns="1" data-ce-images="1">
      <div class="ce-row">
        <div class="ce-column">
          <figure class="image">
          <img class="image-embed-item"
            src="/fileadmin/user_upload/TYPO3.png" width="280" height="280" loading="lazy" alt="">
          </figure>
        </div>
      </div>
    </div>
    <div class="ce-bodytext">
      <p>Lorem ipsum dolor sit...</p>
    </div>
  </div>
</div>
Copied!

If the default CSS provided by this extension was also included, the output could look like the following in the browser:

A little bit of history 

In early years, TYPO3's content elements were rendered by the Typoscript set called content (default). This was mainly based on font-tags for styling and tables for positioning which was needed to achieve the visual constructions in old versions of web browsers.

Some time later the extension css_styled_content was introduced, which focused on reducing the amount of TypoScript and providing XHTML/HTML5 markup which could be styled by Cascading Style Sheets (CSS), a style sheet language used for describing the look and formatting of a document written in a markup language. Still this extension was heavily based on TypoScript and did allow custom modifications up to some point.

Since the introduction of the Fluid templating engine, more websites are using this for page templating. Newer TYPO3 CMS packages (extensions) are also using Fluid as their base templating engine. The content elements which were provided with TYPO3 CMS by default were still using TypoScript and some PHP code.

Since TYPO3 7.5 the default content elements are provided by the extension fluid_styled_content and thus use Fluid as template engine. The main benefit being that hardly any knowledge of TypoScript is now needed to make changes. Integrators can easily exchange the base content element Fluid templates with their own. With Fluid, more complex functionality that exceed the simple output of values has to be implemented with ViewHelpers. Every ViewHelper has its own PHP class. Several basic ViewHelpers are provided by Fluid. When using your own Fluid templates, developers can add extra functionality with their own ViewHelpers.

Installation 

This extension is part of the TYPO3 Core.

Table of contents

Installation with Composer 

Check whether you are already using the extension with:

composer show | grep fluid-styled-content
Copied!

This should either give you no result or something similar to:

typo3/cms-fluid-styled-content       v12.4.11
Copied!

If it is not installed yet, use the composer require command to install the extension:

composer require typo3/cms-fluid-styled-content
Copied!

The given version depends on the version of the TYPO3 Core you are using.

Installation without Composer 

In an installation without Composer, the extension is already shipped but might not be activated yet. Activate it as follows:

  1. In the backend, navigate to the Admin Tools > Extensions module.
  2. Click the Activate icon for the Fluid Styled Content extension.
Extension manager showing Fluid Styled Content extension

Extension manager showing Fluid Styled Content extension

Next step 

Include the default TypoScript file.

Include one of the available site sets 

New in version 13.1

Site sets have been introduced and are the recommended method to include TypoScript. If you do not want to use site sets, you can still use TypoScript includes to include the default TypoScript.

To use the default rendering definitions provided by fluid_styled_content, you should add one of the two site sets provided by this extension to your site configuration or depend on it in your site package's site set.

Add the site set to your site configuration 

This is the recommended way to include the "Fluid Styled Content" site set into basic TYPO3 sites without a custom site package. See also site sets.

Add the site set of Fluid Styled Content

When saving, the GUI then automatically updates your site configuration:

config/sites/my-site/config.yaml (diff)
  base: https://example.ddev.site
+ dependencies:
+   - typo3/fluid-styled-content-css
  languages:
    -
      title: English
Copied!

Add the site set to your custom site package 

If your installation has a custom site package, it is recommended to depend on the "Fluid Styled Content CSS" site set with your site package's site set:

EXT:my_site_package/Configuration/Sets/MySet/config.yaml
name: myvendor/my-site-package
label: My sitepackage set
dependencies:
  - typo3/fluid-styled-content-css
Copied!

Edit the settings 

All settings of this extension are now available in the Settings editor.

Next step 

Display the content elements in your site package template.

Use TypoScript includes 

Changed in version 13.1

If you included the site sets, skip this step.

To use the default rendering definitions provided by fluid_styled_content, you have to add the extension's TypoScript set to your root TypoScript record.

When you are using a site package you can add the following lines to your site packages constants.typoscript and setup.typoscript:

my_sitepackage/Configuration/TypoScript/constants.typoscript
# Import the default constants of EXT:fluid_styled_content
@import 'EXT:fluid_styled_content/Configuration/TypoScript/constants.typoscript'
Copied!
my_sitepackage/Configuration/TypoScript/setup.typoscript
# Import the default setup of EXT:fluid_styled_content
@import 'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript'

# Import the default CSS of EXT:fluid_styled_content
@import 'EXT:fluid_styled_content/Configuration/TypoScript/Styling/setup.typoscript'
Copied!

This is the recommended way as the import of TypoScript can be kept under version control this way.

Alternative: Include the TypoScript set in the root TypoScript record 

It is also still possible to include the TypoScript set directly into a TypoScript record. However there are draw backs: The import is then stored in the database and not the file system and cannot be kept under version control.

Edit the whole TypoScript record

  1. Go to the module Web > TypoScript.
  2. In the page tree, select the page which contains the root TypoScript record of your website.
  3. Select Edit TypoScript Record in the dropdown at the top of the Web > TypoScript module.
  4. Click the Edit the whole TypoScript record. This will open all the settings of the root TypoScript record:

Include the Fluid Content Elements TypoScript file

Go to the tab Includes and select Fluid Content Elements in the Available items under Include TypoScript sets. The selection will move to the Selected items.

TYPO3 is now using the rendering definitions of fluid_styled_content for the default set of content elements. This is essentially unstyled HTML5 markup.

You can additionally select Fluid Content Elements CSS (optional). This TypoScript set adds some CSS styling to make sure all the parts of a content elements have some styling, this will include alignment and positioning. This set of styles will not add any colors, make any changes to typography or anything else related to your website's visual style. This TypoScript set is optional, as it is common for integrators to override the basic styling.

Save the TypoScript record by using the save button at the top of the module.

Next step 

Display the content elements in your site package template.

Inserting content in your page template 

To get the different columns from the backend displayed in the frontend you can use predefined CONTENT objects or the DatabaseQueryProcessor.

It is advised to make all your changes in a custom extension, visit the site package documentation to find out more.

Based on the FLUIDTEMPLATE content object (cObj) 

lib.dynamicContent = COA
lib.dynamicContent {
   10 = LOAD_REGISTER
   10.colPos.cObject = TEXT
   10.colPos.cObject {
      field = colPos
      ifEmpty.cObject = TEXT
      ifEmpty.cObject {
         value.current = 1
         ifEmpty = 0
      }
   }
   20 = CONTENT
   20 {
      table = tt_content
      select {
         orderBy = sorting
         where = {#colPos}={register:colPos}
         where.insertData = 1
      }
   }
   90 = RESTORE_REGISTER
}

page = PAGE
page {
   10 = FLUIDTEMPLATE
   10 {
      templateName = Default
      templateRootPaths {
         0 = EXT:example_package/Resources/Private/Templates/Page/
      }
      partialRootPaths {
         0 = EXT:example_package/Resources/Private/Partials/Page/
      }
      layoutRootPaths {
         0 = EXT:example_package/Resources/Private/Layouts/Page/
      }
   }
}
Copied!
<f:layout name="Default" />
<f:section name="Main">
   <f:cObject typoscriptObjectPath="lib.dynamicContent" data="{colPos: '0'}" />
</f:section>
Copied!

Next step 

You can start adding content elements or make further configurations.

Configuration 

Configuring content elements can be done for the frontend and the backend.

The appearance of the content elements can be changed by overriding the default settings provided by the site set "Fluid Styled Content".

You can also override the Fluid templates provided by this extension.

For the backend, fields can be shown or hidden, depending on the fields you are using or the fields an editor is allowed to use. Configuration like this is done using Page TSconfig or User TSconfig.

Site sets 

New in version 13.1

The extension typo3/cms-fluid-styled-content offers two site sets that can be included via the Site module or required by your site package's site set.

The settings provided by these sets can be adjusted in the Settings editor.

"Fluid Styled Content" 

The site set "Fluid Styled Content" includes all TypoScript required to display the content elements provided by fluid_styled_content.

"Fluid Styled Content CSS" 

This site set extends the "Fluid Styled Content" site set with default CSS.

Site set "Fluid Styled Content" 

New in version 13.1

The site set "Fluid Styled Content" includes all TypoScript required to display the content elements provided by typo3/cms-fluid-styled-content .

Some settings in these content elements like image positions or space settings require certain CSS styles. If you want to use the default CSS styles provided by TYPO3, include Site set "Fluid Styled Content CSS" in addition to this site set.

If you depend on this site set directly instead of Site set "Fluid Styled Content CSS" you should provide the missing CSS yourself or disable all tt_content fields via page TSconfig that lose their function due to missing CSS.

Settings provided by site set "Fluid Styled Content" 

These settings can be adjusted in the Settings editor.

Name Type Label
Fluid Styled Content
Templates
string Path of Fluid Templates for all defined content elements
string Path of Fluid Partials for all defined content elements
string Path of Fluid Layouts for all defined content elements
Content Elements
int Default Header type
string List of accepted tables
string List of allowed HTML tags when rendering RTE content
string Default settings for browser-native image lazy loading
string Default settings for an image decoding hint to the browser
int Max Image/Media Width
int Max Image/Media Width (Text)
int Advanced, Column space
int Advanced, Row space
int Advanced, Margin to text
color Media element border, color
int Media element border, thickness
int Media element border, padding
string Click-enlarge Media Width
string Click-enlarge Media Height
bool Advanced, New window
bool Lightbox click-enlarge rendering
string Lightbox CSS class
string Lightbox rel="" attribute
string Target for external links
string Parts to keep when building links

fsc

fsc
Label
Fluid Styled Content

fsc.templates

fsc.templates
Label
Templates

styles.templates.templateRootPath

styles.templates.templateRootPath
Type
string
Label
Path of Fluid Templates for all defined content elements
Category
Fluid Styled Content > Templates

styles.templates.partialRootPath

styles.templates.partialRootPath
Type
string
Label
Path of Fluid Partials for all defined content elements
Category
Fluid Styled Content > Templates

styles.templates.layoutRootPath

styles.templates.layoutRootPath
Type
string
Label
Path of Fluid Layouts for all defined content elements
Category
Fluid Styled Content > Templates

fsc.content

fsc.content
Label
Content Elements

styles.content.defaultHeaderType

styles.content.defaultHeaderType
Type
int
Default
2
Label
Default Header type
Category
Fluid Styled Content > Content Elements

Enter the number of the header layout to be used by default

styles.content.shortcut.tables

styles.content.shortcut.tables
Type
string
Default
"tt_content"
Label
List of accepted tables
Category
Fluid Styled Content > Content Elements

styles.content.allowTags

styles.content.allowTags
Type
string
Default
"a, abbr, acronym, address, article, aside, b, bdo, big, blockquote, br, caption, center, cite, code, col, colgroup, dd, del, dfn, dl, div, dt, em, figure, font, footer, header, h1, h2, h3, h4, h5, h6, hr, i, img, ins, kbd, label, li, link, mark, meta, nav, ol, p, pre, q, s, samp, sdfield, section, small, span, strike, strong, style, sub, sup, table, thead, tbody, tfoot, td, th, tr, title, tt, u, ul, var"
Label
List of allowed HTML tags when rendering RTE content
Category
Fluid Styled Content > Content Elements

styles.content.image.lazyLoading

styles.content.image.lazyLoading
Type
string
Default
"lazy"
Label
Default settings for browser-native image lazy loading
Enum
{ "lazy": "Lazy", "eager": "Eager", "auto": "Auto" }
Category
Fluid Styled Content > Content Elements

Can be `lazy` (browsers could choose to load images later), `eager` (load images right away) or `auto` (browser will determine whether the image should be lazy loaded or not)

styles.content.image.imageDecoding

styles.content.image.imageDecoding
Type
string
Label
Default settings for an image decoding hint to the browser
Enum
{ "sync": "Sync", "async": "Asynchronous", "auto": "Auto" }
Category
Fluid Styled Content > Content Elements

Can be `sync` (synchronously for atomic presentation with other content), `async` (asynchronously to avoid delaying presentation of other content), `auto` (no preference in decoding mode) or an empty value to omit the usage of the decoding attribute (same as `auto`)

styles.content.textmedia.maxW

styles.content.textmedia.maxW
Type
int
Default
600
Label
Max Image/Media Width
Category
Fluid Styled Content > Content Elements

This indicates that maximum number of pixels (width) a block of media elements inserted as content is allowed to consume

styles.content.textmedia.maxWInText

styles.content.textmedia.maxWInText
Type
int
Default
300
Label
Max Image/Media Width (Text)
Category
Fluid Styled Content > Content Elements

Same as above, but this is the maximum width when text is wrapped around an block of media elements. Default is 50% of the normal Max Media Item Width

styles.content.textmedia.columnSpacing

styles.content.textmedia.columnSpacing
Type
int
Default
10
Label
Advanced, Column space
Category
Fluid Styled Content > Content Elements

Horizontal distance between media elements in a block in content elements of type "Media & Images". If you change this manually in your CSS, you need to adjust this setting accordingly

styles.content.textmedia.rowSpacing

styles.content.textmedia.rowSpacing
Type
int
Default
10
Label
Advanced, Row space
Category
Fluid Styled Content > Content Elements

Vertical distance after each media elements row in content elements of type "Text & Media". If you change this manually in your CSS, you need to adjust this setting accordingly

styles.content.textmedia.textMargin

styles.content.textmedia.textMargin
Type
int
Default
10
Label
Advanced, Margin to text
Category
Fluid Styled Content > Content Elements

Horizontal distance between an imageblock and text in content elements of type "Text & Images"

styles.content.textmedia.borderColor

styles.content.textmedia.borderColor
Type
color
Default
"#000000"
Label
Media element border, color
Category
Fluid Styled Content > Content Elements

Bordercolor of media elements in content elements when "Border"-option for an element is set

styles.content.textmedia.borderWidth

styles.content.textmedia.borderWidth
Type
int
Default
2
Label
Media element border, thickness
Category
Fluid Styled Content > Content Elements

Thickness of border around media elements in content elements when "Border"-option for element is set

styles.content.textmedia.borderPadding

styles.content.textmedia.borderPadding
Type
int
Default
0
Label
Media element border, padding
Category
Fluid Styled Content > Content Elements

Padding left and right to the media element, around the border

styles.content.textmedia.linkWrap.width

styles.content.textmedia.linkWrap.width
Type
string
Default
"800m"
Label
Click-enlarge Media Width
Category
Fluid Styled Content > Content Elements

This specifies the width of the enlarged media element when click-enlarge is enabled

styles.content.textmedia.linkWrap.height

styles.content.textmedia.linkWrap.height
Type
string
Default
"600m"
Label
Click-enlarge Media Height
Category
Fluid Styled Content > Content Elements

This specifies the height of the enlarged media element when click-enlarge is enabled

styles.content.textmedia.linkWrap.newWindow

styles.content.textmedia.linkWrap.newWindow
Type
bool
Default
false
Label
Advanced, New window
Category
Fluid Styled Content > Content Elements

If set, every click-enlarged media element will open in it's own popup window and not the current popup window (which may have a wrong size for the media element to fit in)

styles.content.textmedia.linkWrap.lightboxEnabled

styles.content.textmedia.linkWrap.lightboxEnabled
Type
bool
Default
false
Label
Lightbox click-enlarge rendering
Category
Fluid Styled Content > Content Elements

Whether media elements with click-enlarge checked should be rendered lightbox-compliant

styles.content.textmedia.linkWrap.lightboxCssClass

styles.content.textmedia.linkWrap.lightboxCssClass
Type
string
Default
"lightbox"
Label
Lightbox CSS class
Category
Fluid Styled Content > Content Elements

Which CSS class to use for lightbox links (only applicable if lightbox rendering is enabled)

styles.content.textmedia.linkWrap.lightboxRelAttribute

styles.content.textmedia.linkWrap.lightboxRelAttribute
Type
string
Default
"lightbox[{field:uid}]"
Label
Lightbox rel="" attribute
Category
Fluid Styled Content > Content Elements

Which `rel=""` attribute to use for lightbox links (only applicable if lightbox rendering is enabled)

Site set "Fluid Styled Content CSS" 

New in version 13.1

This site set depends on the Site set "Fluid Styled Content". Additionally it includes the _CSS_DEFAULT_STYLE.

The styles provided by this site set enable the display of settings in content elements, including frame styles like .frame-space-before-large, styles for headlines like .ce-headline-center and styles for images like .ce-intext.ce-left.

If you do not depend on this site set you should provide the according CSS yourself or disable all fields in the TCA table that lose their function due to missing CSS styles.

Settings editor 

New in version 13.3

The new backend module Site Management > Settings provides an overview of sites which offer configurable settings and makes them editable.

When the site sets of fluid_styled_content are included, the settings provided by those sets become available in the editor.

You can find the available site settings in module Site Management > Settings

You can change individual settings here. If the site settings are writable you can hit the Save button and the settings will be written directly to the site settings.

If the settings are not writable you can click the YAML export button to export the settings. These can then be added by a developer with sufficient rights.

The available settings are also described in detail in Site sets.

Constant Editor 

Changed in version 13.1

Site sets have been introduced. The settings of the site set superseded using TypoScript constants. Using TypoScript constants is still possible for compatibility reasons.

Include the Fluid Content Elements TypoScript file

  1. The Constant Editor can be found in the Site Management > TypoScript module.
  2. Select the page in the page tree which contains the root Typoscript record of your website.
  3. Select Constant Editor in the dropdown at the top of the Site Management > TypoScript module.
  4. In the dropdown list select the category CONTENT.
  5. This will give you a list with all the constants of this extension. All constants are described and can be edited by clicking the pencil in front of the current value or by editing the available field.
  6. Do not forget to save the new values. The new values will be stored in the "Constants" field of the root template of your website.

TypoScript 

At the section Include one of the available site sets you have already added the TypoScript by depending on the site set.

The TypoScript of the site set includes files located in the directory EXT:fluid_styled_content/Configuration/TypoScript/.

Structure of the TypoScript files

Structure of the TypoScript files

In this folder there are two files:

  • constants.typoscript - This file is only used when for compatibility reasons the TypoScript is included via import or TypoScript module in the outdated fashion.
  • setup.typoscript - This file will first include some other files which are located in the Setup/ folder in the same directory. More about these files later.

In the folder ContentElement/ there are files which are included by the file setup.typoscript as mentioned above. These files contain the rendering definitions of all content elements that are provided by the TYPO3 Core. These are:

  • Bullets.typoscript - Configuration for content element "Bullet List"
  • Div.typoscript - Configuration for content element "Divider"
  • Header.typoscript - Configuration for content element "Header Only"
  • Html.typoscript - Configuration for content element "Plain HTML"
  • Image.typoscript - Configuration for content element "Image"
  • List.typoscript - Configuration for content element "General Plugin"
  • MenuAbstract.typoscript - Configuration for content element "Menu of subpages of selected pages including abstracts"
  • MenuCategorizedContent.typoscript - Configuration for content element "Content elements for selected categories"
  • MenuCategorizedPages.typoscript - Configuration for content element "Pages for selected categories"
  • MenuPages.typoscript - Configuration for content element "Menu of selected pages"
  • MenuRecentlyUpdated.typoscript - Configuration for content element "Recently updated pages"
  • MenuRelatedPages.typoscript - Configuration for content element "Related pages (based on keywords)"
  • MenuSection.typoscript - Configuration for content element "Section index (page content marked for section menus)"
  • MenuSectionPages.typoscript - Configuration for content element "Menu of subpages of selected pages including sections"
  • MenuSitemap.typoscript - Configuration for content element "Sitemap"
  • MenuSitemapPages.typoscript - Configuration for content element "Sitemaps of selected pages"
  • MenuSubpages.typoscript - Configuration for content element "Menu of subpages of selected pages"
  • Shortcut.typoscript - Configuration for content element "Insert records"
  • Table.typoscript - Configuration for content element "Table"
  • Text.typoscript - Configuration for content element "Regular Text Element"
  • Textmedia.typoscript - Configuration for content element "Text and Media"
  • Textpic.typoscript - Configuration for content element "Text and Images"
  • Uploads.typoscript - Configuration for content element "File Links"

Since we move away from TypoScript as much as possible, these rendering definitions only declare the following:

  • Can FLUIDTEMPLATE be used immediately or do we need data processing first?

    A processor is sometimes used to do some data manipulation before all the data is sent to the Fluid template.

  • Assigning the Fluid template file for each type of content element separately.

In the folder Helper/ there are files which are included by the file setup.typoscript as mentioned above. These are:

  • ContentElement.typoscript - Default configuration for content elements using FLUIDTEMPLATE
  • ParseFunc.typoscript - Creates persistent ParseFunc setup for non-HTML content

Overriding the Fluid templates 

At TypoScript we have described the way content elements are rendered.

By default these settings are done in the setup.typoscript file which can be found in the EXT:fluid_styled_content/Configuration/TypoScript/ folder.

Using the site settings 

New in version 13.1

In order to override the templates used in fluid_styled_content you need a custom site package.

You can override the default template paths from the Site set "Fluid Styled Content" in your site configuration:

EXT:site_package/Configuration/Sets/SitePackage/settings.yaml
styles:
  templates:
    templateRootPath: EXT:my_site_package/Resources/Private/Extensions/FluidStyledContent/Templates/
    partialRootPath: EXT:my_site_package/Resources/Private/Extensions/FluidStyledContent/Partials/
    layoutRootPath: EXT:my_site_package/Resources/Private/Extensions/FluidStyledContent/Layouts/
Copied!

Now copy the Fluid templates that you want to override into your site package at the path configured in the site settings.

Using lib.contentElement 

Changed in version 13.1

It is recommended to use site settings instead of lib.contentElement to override the template paths.

This option gives you the ability to add another templateRootPath and can be defined the same as partialRootPaths and layoutRootPaths:

lib.contentElement {
   templateRootPaths {
      200 = EXT:your_extension_key/Resources/Private/Templates/
   }
   partialRootPaths {
      200 = EXT:your_extension_key/Resources/Private/Partials/
   }
   layoutRootPaths {
      200 = EXT:your_extension_key/Resources/Private/Layouts/
   }
}
Copied!

A content element is using a templateName, which is defined in setup.typoscript. You can override this value, but the template from the extension fluid_styled_content will not be loaded as its name is still the default value.

tt_content {
   bullets {
      templateName = ChangedName
   }
}
Copied!

The content elements 

Typical page content

This chapter describes the default set of content elements provided by TYPO3's Core. It will show you a description and screenshots of the backend fields.

General fields 

These are fields which are used by (almost) every content element.

Show in Section Menus 

Using this option will only be visible when using menu's based on sections. This will be described in the chapter Menus.

This field can be found in the Appearance tab.

The field "Show In Section Menu's"

A Section Menu, which is in turn a content element itself produces an output including the headlines of all content elements with the flag Show in Section Menus set.

Access 

The Access tab with all its fields

These fields define if and when a visitor has access to this content element. The access fields all reside in the Access tab:

Visibility of content element
By checking this option the content element will not be visible to any visitor.
Publish Date
The date on which the content has to be published, which means making visible at a certain date.
Expiration Date
The date on which the content will be expired, which means the content will be hidden on a certain date
Usergroup Access Rights
Here you can select whether the content element only is available to a certain frontend user group, if it has to be visible only when the visitor is logged in or if it has to be hidden at a login.

Text & Images 

Typical page content: Text, Images and Media

This content element allows you to combine text and images. Additionally there is also a content element for Text & Media where you can use videos or Audio. There are also separate content elements for Text or Images individually. These offer no advantage over the content element Text & Images except that some fields are missing and the backend form is less cluttered.

The text can be entered in the rich text editor of the General tab.

The content element rich text editor in the content element Text

The media elements can be added in the Images tab. In this tab there is also the option to turn the enlarge on click behaviour on for images.

TextImages in the content element Text & Images

Multiple images and movies are combined as a gallery, which can be configured using the Gallery Settings. In some installations there are specific settings for width or height for each element, if a border should be shown around each element, the position of the gallery in relation to the text and the amount of columns which should be used for the gallery.

The maximum width of the gallery can be different when the gallery is on top or bottom of the text, or inside the text. This can be set using the Constant Editor.

Bullet list 

Typical page content: Bullet List

With this content element you can provide unordered and ordered bullet lists, but also a definition list, in the frontend.

The most important fields of the content element

The type of list can be defined with the field Type of bullets.

The content is added in the field Bullet List, where each new line is a new bullet.

Bullet 1
Bullet 2
Bullet 3
Copied!

For definition lists you use one line for a single definition which starts with the term, followed by the description, separated by a vertical bar "|".

Term 1|Description 1
Term 2|Description 2
Term 3|Description 3
Copied!

Table 

Typical page content: Table List

The Table content element can be used to display tabular data.

The content element Table in the backend

By default the Field delimiter is a vertical bar "|", the Text enclosure set to none.

A Table caption can be provided as a heading for the table.

The content element Table in the backend, tab Appearance

Also some appearance options are available for the table. These can be found in the Appearance tab:

Columns
The maximum amount of columns. Even when more columns are defined in the Table content field, the table will only show the maximum amount of columns.
Table class
Some predefined classes to style the table output.
Table header position
The first row or the first column can be used as a table header.
Use table footer
The last row will be used to group the table's footer area (which may be a summary, an addition of column values, or some call to action based on the preceding content).

Insert Records 

Insert records page content

Ever have content on one page that you want to reference on another page? But you don't want to have to maintain both and keep them both in sync? And you don't want to show the whole content from one page on another. Using insert records you can add one content element from a page or all the content elements from a page. You can also add content elements from several pages.

The content element Insert Records

Just select the content elements you want to display and if necessary, put them in the right order.

In the frontend the referenced content elements will show up the same as the original one (if the styling is not different for that page)

Insert plugin 

Plugin content elements

Extensions often provide plugins to render frontend output. They are essentially the same as content elements. When an extension depends on a plugin, select the plugin in this content element. The fields might change depending on the plugin.

For example, the system extension indexed_search provides the Indexed Search plugin which does not offer any additional fields:

The plugin Indexed Search

Divider 

Divider page content

Nothing more than a horizontal rule.

HTML 

Plain HTML page content

The content element Plain HTML in the backend

Insert HTML directly using this content element.

Adding Your Own Content Elements 

Sitemap