Columns Examples in Zolt

Basic Two-Column Layout

Simple side-by-side content:

Left Column

Content for the left side.

Right Column

Content for the right side.

Custom Widths

Columns with specific widths:

Main Content (70%)

This is the main content area with more space.

Sidebar (30%)

This is the sidebar with less space.

Three Equal Columns

Three-column layout:

Column 1

First column content.

Column 2

Second column content.

Column 3

Third column content.

Mixed Widths

Different width combinations:

Narrow (25%)

Sidebar content.

Wide (50%)

Main content area.

Narrow (25%)

Additional sidebar.

Practical Examples

Article Layout

Main Article

Introduction

This is the main content of the article with comprehensive information about the topic.

Key Points

Conclusion

Summary of the article content and key takeaways.

Table of Contents

  1. Introduction
  2. Key Points
  3. Conclusion

Author Info

Written by: Jane Doe Published: February 18, 2026

Product Features

Core Features

Feature 1

Description of the first core feature with detailed explanation.

Feature 2

Description of the second core feature.

Feature 3

Description of the third core feature.

Additional Benefits

Benefit 1

Explanation of the first benefit.

Benefit 2

Explanation of the second benefit.

Benefit 3

Explanation of the third benefit.

"Our customers love these features!"

Documentation Layout

API Documentation

Endpoint: GET /users

Retrieve a list of all users.

Response:

{
  "users": [
    {"id": 1, "name": "John"},
    {"id": 2, "name": "Jane"}
  ]
}

Endpoint: POST /users

Create a new user.

Request:

{
  "name": "Alice",
  "email": "alice@example.com"
}

Parameters

ParameterTypeRequired
namestringYes
emailstringYes
ageintegerNo

Status Codes

Comparison Table

Free Plan

Price: Free

Pro Plan

Price: $9/month

Enterprise

Price: Custom

Profile Cards

John Doe - Developer

John

Role: Senior Developer Location: San Francisco, CA

Skills:

  • JavaScript
  • Python
  • React
Jane Smith - Designer

Jane

Role: UI/UX Designer Location: New York, NY

Skills:

  • Figma
  • Adobe XD
  • Prototyping
Bob Johnson - Manager

Bob

Role: Project Manager Location: Austin, TX

Skills:

  • Agile
  • Scrum
  • Leadership

Pricing Cards

Starter

$0/month

Get Started

Professional

$29/month

Get Started

Enterprise

Custom pricing

Contact Sales

Rich Content in Columns

Code and Explanation

Code Example

def fibonacci(n):
    if n <= 1:
        return n
    return fibonacci(n-1) + fibonacci(n-2)

Explanation

This recursive function calculates the nth Fibonacci number.

How it works:

  1. Base case: n ≤ 1
  2. Recursive case: sum of two previous
  3. Returns the result

Time Complexity: O(2n)

Photo 1

Sunset at the beach

Photo 2

Mountain landscape

Photo 3

City skyline at night

Advanced Layouts

Nested Content

Main Section

Subsection

Content with nested elements:

A quote within the main column.

Tab content inside column

More tab content

Information

Some technical

content here

with indentation

Use Cases

Newsletter Layout

Featured Article

Breaking News

Major announcement with full details and comprehensive coverage of the story.

Continue reading for more information about this developing story...

In This Issue

Subscribe

Stay updated with our latest content.

Resume Layout

Work Experience

Senior Developer (2020-Present)

TechCorp Inc.

Developer (2017-2020)

StartupXYZ

Skills

Education

Bachelor of Computer Science MIT, 2017

Contact

Best Practices

Responsive Considerations

Desktop Layout

Content optimized for larger screens with full column layout.

This column takes 50% width on desktop.

Mobile Adaptation

On mobile, columns will stack vertically for better readability.

Content remains accessible and well-organized.

Column Content Guidelines

Do:

Don't:

← Back to Examples Index