Pluslide LogoPluslide
Design TemplateField Types

Text

Display dynamic text in Pluslide templates using Text fields. Configure fonts, sizes, colors, alignment, and rich formatting for titles and content.

Text fields display text content with rich formatting options. Use them for titles, paragraphs, labels, and any dynamic text data.

Use Cases

  • Titles and headlines
  • Body paragraphs
  • Labels and captions
  • Dynamic data display (names, numbers, dates)

Editor Settings

SettingDescription
Default textFallback text when no API value is provided
Text sizeFont size in points (e.g., 24)
Text colorColor picker for text color
Line heightLine height multiplier (e.g., 1.5)
Text styleBold, Italic, Underline buttons

Sizing Behavior

In the field properties panel, you can set Width and Height:

ModeEffect
FixedText wraps within fixed pixel box
HugBox expands to fit content
FillFills parent container (only in Group/List)

API Content Format

{
  "content": {
    "title": "Hello World",
    "description": "This is a paragraph of text."
  }
}

The field key (e.g., title, description) maps directly to your template's field key.

Examples

Static Label

A fixed label that never changes:

  • Set content in Default text
  • Mark as Static in field properties
  • Useful for: section headers, fixed labels like "Contact Us"

Dynamic Title

A title populated by API:

  • Leave Default text as fallback
  • Mark as Required if essential
  • Useful for: report titles, product names, personalized greetings

Multi-line Paragraph

For longer content:

  • Set Width to Fixed or Fill
  • Use appropriate Line height (1.4-1.6 for readability)
  • Text will wrap automatically within the box

On this page