CU3ER - Slides
XML location & structure
<cu3er>
<slides>
<slide>
<url>
<link>
<description>
<link>
<heading>
<paragraph>
</description>
</slide>
</slides>
</cu3er>
Overview
This is, obviously, the place where you define all slide properties such as image url, link, description content.
Please, note that this is the only node with a complex nested structure in which the properties and node attributes are included.
Each <slide> may contain the following child nodes:
-
<url> - path to your image / slide. Make sure to avoid the "relative path trap" after publishing CU3ER
-
<link> - url link to the page or site when the user clicks the slide. Available attribute: target = ""
- <description> This node acts as a container for the "description box" content. It may have the following child nodes:
-
<heading> - text to display as heading text
-
<paragraph> - text to display as paragraph text
-
<link> - url link to the page or site when the user clicks the "description box". Available attribute: target = ""
-
Only the <url> node is required for CU3ER to work correctly.
Example:
<slide>
<url>path_to_your_image.jpg</url>
<link target="_self">your_page_link.htm</link>
<description>
<link target="_self">another_page_link.htm</link>
<heading>This is my heading text</heading>
<paragraph>Paragraph text goes here!</paragraph>
</description>
</slide>
XML Reference
| Node | Attribute | Default | Type | Description |
|---|---|---|---|---|
| <url> | string | path to your image / slide | ||
| <link> | target | _blank | string | link to the page or site when the user clicks the slide, the target defines where the linked document will be opened: "_blank", "_self", "_parent" or "_top" |
| <description> | container node for "heading", "paragraph" and "link" elements | |||
| <heading> | string | text to display as heading text | ||
| <paragraph> | string | text to display as paragraph text | ||
| <link> | target | _blank | string | same as above |