Sign In

Content Text

A display-only text block for headings, paragraphs, and callout frames within your form.

The Content Text field renders static text on the form canvas. It does not collect user input. Use it for headings, instructions, disclaimers, or callout messages that provide context between input fields.

Configuration

PropertyTypeDefaultDescription
labelstring--Optional label displayed above the text block
widthLayoutWidth"full"Horizontal space the field occupies
textstring--The text content to display
tagContentTextTag"p"HTML element: "p", "h1", "h2", "h3", "h4", "h5", or "h6"
alignContentTextAlign--Text alignment: "left", "center", or "right"
boldbooleanfalseWhether the text is rendered in bold
italicbooleanfalseWhether the text is rendered in italic
sizeContentTextSize--Font size override: "sm", "base", "lg", or "xl"
fontFamilystring"default"Font family: "default", "heading", "serif", or "mono"
framestring"none"Callout frame style: "none", "warning", "danger", "note", or "accept"
showIconboolean--Whether to show an icon alongside the frame (only applies when a frame is set)

Frame Styles

The frame property wraps the text block in a colored callout container:

  • none -- No frame, plain text.
  • warning -- Yellow/amber border and background, for cautionary notes.
  • danger -- Red border and background, for critical warnings.
  • note -- Blue border and background, for informational callouts.
  • accept -- Green border and background, for success or confirmation messages.

When a frame is active and showIcon is enabled, a matching icon (warning triangle, info circle, etc.) is displayed next to the text.

Example Usage

A warning callout before a payment section:

{
  "type": "contentText",
  "text": "You will be charged immediately upon submission. This action cannot be undone.",
  "tag": "p",
  "frame": "warning",
  "showIcon": true,
  "bold": true,
  "align": "center"
}

On this page

Content Text | Buildorado