Skip to content
PodcasterPlus PodcasterPlus
Guest network Workflows Hosting Pricing
Sign in Start free
Booking Links One link for guests to pick a time, fill the form, and prep. Show Notes New Real-time prep doc with shared, host-only, and guest-private lenses. Automations Trigger reminders, posts, and follow-ups on episode events. Templates New Reusable email and show-note templates with live magic tags. Transcriptions AI transcripts with speaker tags, ready to edit and ship. Magic Tags New Dynamic placeholders that fill in guest, show, and episode data.
Spotlight · Automations

Replace twelve Zaps with one workflow.

Watch a PodOps team move from manual outreach to a hands-off pipeline in under five minutes.

Guest confirms time09:14
Calendar invite sent09:14
Prep email queued+ 2d
Reminder & briefing+ 1h
Watch the 90-second demo
Building a podcast network? See how teams scale with PodcasterPlus. Compare all features
Features
Booking Links One link for guests to pick a time, fill the form, and prep. Show Notes New Real-time prep doc with shared, host-only, and guest-private lenses. Automations Trigger reminders, posts, and follow-ups on episode events. Templates New Reusable email and show-note templates with live magic tags. Transcriptions AI transcripts with speaker tags, ready to edit and ship. Magic Tags New Dynamic placeholders that fill in guest, show, and episode data.
Guest network Workflows Hosting Pricing
Sign in Start free - no card
  • Home
  • PodcasterPlus Docs
  • Blocks
  • Block Components
  • Layout Settings User Guide
An icon representing a document

Getting Started

3
  • Quick Start Guide – Add Your First Episode
  • Installation & Activation
  • Connecting Your RSS Feed
An icon representing the PodcasterPlus WordPress Blocks

Block Settings

9
  • Play Button Block User Guide
  • Volume Control Block User Guide
  • Playback Speed Block User Guide
  • Skip Controls User Guide (Skip Forward & Skip Backward)
  • Progress Bar Block User Guide
  • Episode Title Block User Guide
  • Episode Image Block User Guide
  • Episode Description Block User Guide
  • Container Block User Guide
an icon representing a person reading a book

Block Components

6
  • Spacing Settings User Guide
  • Sizing Settings User Guide
  • Shadow Settings User Guide
  • Layout Settings User Guide
  • Display Settings User Guide
  • Border Settings User Guide
View Categories

Layout Settings User Guide

4 min read

Overview #

The Layout Settings panel in PodcasterPlus Blocks provides powerful Flexbox controls for creating modern, responsive layouts. This guide explains how to use layout settings to arrange content beautifully across all devices, from complex desktop designs to simplified mobile layouts.

Understanding Layout Controls #

Layout settings give you complete control over content arrangement:

Display Type #

  • Block: Traditional stacked layout (default)
  • Flex: Modern flexible box layout
  • Desktop-only setting: Applies to all devices

Flex Direction #

  • Row: Items side by side (left to right)
  • Column: Items stacked (top to bottom)
  • Row Reverse: Side by side (right to left)
  • Column Reverse: Stacked (bottom to top)

Align Items #

  • Stretch: Fill container height/width
  • Start: Align to beginning
  • Center: Center alignment
  • End: Align to end
  • Baseline: Align text baselines

Justify Content #

  • Start: Pack items at start
  • Center: Center items
  • End: Pack items at end
  • Space Between: Equal space between
  • Space Around: Equal space around
  • Space Evenly: Equal space everywhere

Gap #

  • Spacing between items: Consistent gaps
  • Responsive values: Different per device
  • Units: px, em, rem, %, vw

How Layout Settings Work #

Flexbox Fundamentals #

When Display is set to “Flex”:

  1. Container becomes flexible: Child items can be arranged
  2. Main axis: Direction items flow (row/column)
  3. Cross axis: Perpendicular to main axis
  4. Items respond: To alignment and justification

Responsive Behavior #

Layout properties (except Display) are responsive:

  • Desktop settings: Define primary layout
  • Tablet adjustments: Modify for medium screens
  • Mobile optimization: Simplify for small devices

Visual Controls #

  • Icon buttons: Visual representation of options
  • Inherited values: Show as muted when not set
  • Active selection: Highlighted button
  • Help text: Shows inherited values

Using the Layout Panel #

Basic Flex Setup #

  1. Set Display to Flex: Enables layout controls
  2. Choose Direction: Row for horizontal, Column for vertical
  3. Align Items: Control cross-axis alignment
  4. Justify Content: Control main-axis distribution
  5. Add Gap: Space between items

Responsive Adjustments #

  1. Start with Desktop: Design primary layout
  2. Switch to Tablet: Adjust for medium screens
  3. Optimize for Mobile: Often switch to column
  4. Test all views: Verify responsive behavior

Common Patterns #

  • Desktop Row → Mobile Column: Classic responsive pattern
  • Centered content: Align and Justify to center
  • Spaced navigation: Space-between for menus
  • Card grids: Row with wrap and gap

Best Practices #

Mobile-First Flexbox #

  • Start simple: Column layout for mobile
  • Enhance upward: Add complexity on larger screens
  • Test real devices: Flexbox can vary by browser
  • Consider touch: Adequate spacing for fingers

Performance Optimization #

  • Avoid deep nesting: Limit flex containers
  • Use gap over margins: Cleaner, more efficient
  • Test rendering: Complex layouts can be slow
  • Minimize reflows: Batch layout changes

Accessibility Considerations #

  • Logical order: HTML order matters for screen readers
  • Keyboard navigation: Ensure tab order makes sense
  • Visual order: May differ from DOM order
  • Test thoroughly: With assistive technologies

Common Use Cases #

Horizontal Navigation #

Display: Flex
Direction: Row
Align Items: Center
Justify: Space Between
Gap: 20px
Mobile: Switch to Column

Media Object (Image + Text) #

Display: Flex
Direction: Row
Align Items: Start
Gap: 20px
Mobile Direction: Column

Centered Hero Section #

Display: Flex
Direction: Column
Align Items: Center
Justify: Center
Min Height: 400px

Card Grid #

Display: Flex
Direction: Row
Justify: Start
Gap: 30px
Flex Wrap: Wrap (if supported)

Sidebar Layout #

Display: Flex
Direction: Row
Gap: 40px
Tablet: Smaller gap
Mobile: Column direction

Layout Patterns #

Two-Column Layout #

Desktop setup:

  1. Container: Flex, Row
  2. Main content: 70% width
  3. Sidebar: 30% width
  4. Gap: 40px
  5. Mobile: Column, 100% widths

Three-Card Row #

Responsive cards:

  1. Desktop: Row, Space Between
  2. Tablet: Row, smaller gap
  3. Mobile: Column, centered
  4. Equal heights: Align Stretch

Sticky Footer #

Full-height layout:

  1. Container: Flex, Column
  2. Min Height: 100vh
  3. Main content: Flex grow
  4. Footer: Stays at bottom

Troubleshooting #

Items Not Aligning #

Common issues:

  1. Check flex direction: Affects which axis
  2. Parent height: Needed for vertical alignment
  3. Item properties: May override container
  4. Browser support: Check compatibility

Gaps Not Working #

Solutions:

  1. Browser support: Gap in flexbox is newer
  2. Fallback: Use margins if needed
  3. Check syntax: Correct unit values
  4. Parent overflow: May hide gaps

Responsive Issues #

Debugging steps:

  1. Verify breakpoints: Correct device selected
  2. Check inheritance: Values cascading properly
  3. Clear values: Remove to test inheritance
  4. Browser tools: Inspect computed styles

Performance Problems #

Optimization:

  1. Simplify nesting: Flatten structure
  2. Reduce calculations: Fixed values over percentages
  3. Limit items: Paginate or lazy load
  4. Profile rendering: Use browser tools

Advanced Techniques #

Flex Shorthand #

Understanding flex item properties:

  • Flex Grow: How much item should grow
  • Flex Shrink: How much item can shrink
  • Flex Basis: Initial size before growing/shrinking

Alignment Combinations #

Powerful layout effects:

  1. Center everything: Both axes centered
  2. Bottom-right: End + End alignment
  3. Stretch height: Column + Stretch
  4. Equal columns: Row + Stretch

Responsive Patterns #

Common breakpoint strategies:

  • Desktop: Complex multi-column
  • Tablet: Simplified, maybe 2 columns
  • Mobile: Single column, vertical
  • Micro-layouts: Components within components

Integration with Other Settings #

With Sizing #

  • Width/height affect flex items
  • Min/max constraints still apply
  • Flex can override some sizing
  • Test interactions carefully

With Spacing #

  • Padding inside flex items
  • Margins between (prefer gap)
  • Container padding affects all
  • Box model considerations

With Display #

  • Hidden items don’t participate
  • Affects flex calculations
  • Plan for missing items
  • Test all scenarios

Tips for Complex Layouts #

Nested Flex Containers #

When to nest:

  1. Component isolation: Each has own layout
  2. Different directions: Row containing columns
  3. Alignment needs: Fine-grained control
  4. Maintainability: Easier to understand

Debugging Flexbox #

Tools and techniques:

  1. Browser DevTools: Flex inspector
  2. Outline items: Temporary borders
  3. Background colors: See container bounds
  4. Firefox tools: Best flex debugging

Frequently Asked Questions #

Q: Why isn’t Display responsive?
A: Display fundamentally changes how CSS works, so it applies to all devices for consistency.

Q: How do I make items wrap to new lines?
A: Flex wrap isn’t currently supported. Use multiple rows or conditional layouts.

Q: Can I change item order?
A: Not directly, but row-reverse and column-reverse can help.

Q: Why don’t percentages work in gap?
A: Browser limitations. Use fixed units (px, em, rem) for gaps.

Q: How do I make equal-height columns?
A: Use Align Items: Stretch (default) in a row layout.

Best Practices Summary #

  1. Start simple: Basic layouts first
  2. Test responsively: All breakpoints
  3. Use semantic HTML: Order matters
  4. Optimize performance: Avoid over-nesting
  5. Consider accessibility: Logical flow
  6. Document patterns: For team consistency

Getting Help #

If you need assistance with Layout Settings:

  1. Review this guide and examples
  2. Check CSS Flexbox Guide
  3. Visit our support forum
  4. Share your layout challenge for specific help

Remember: Flexbox is powerful but can be complex. Start with simple layouts and gradually add sophistication as you master the concepts.

Updated on August 29, 2025

What are your Feelings

  • Happy
  • Normal
  • Sad
Shadow Settings User GuideDisplay Settings User Guide
Table of Contents
  • Overview
  • Understanding Layout Controls
    • Display Type
    • Flex Direction
    • Align Items
    • Justify Content
    • Gap
  • How Layout Settings Work
    • Flexbox Fundamentals
    • Responsive Behavior
    • Visual Controls
  • Using the Layout Panel
    • Basic Flex Setup
    • Responsive Adjustments
    • Common Patterns
  • Best Practices
    • Mobile-First Flexbox
    • Performance Optimization
    • Accessibility Considerations
  • Common Use Cases
    • Horizontal Navigation
    • Media Object (Image + Text)
    • Centered Hero Section
    • Card Grid
    • Sidebar Layout
  • Layout Patterns
    • Two-Column Layout
    • Three-Card Row
    • Sticky Footer
  • Troubleshooting
    • Items Not Aligning
    • Gaps Not Working
    • Responsive Issues
    • Performance Problems
  • Advanced Techniques
    • Flex Shorthand
    • Alignment Combinations
    • Responsive Patterns
  • Integration with Other Settings
    • With Sizing
    • With Spacing
    • With Display
  • Tips for Complex Layouts
    • Nested Flex Containers
    • Debugging Flexbox
  • Frequently Asked Questions
  • Best Practices Summary
  • Getting Help
PodcasterPlus PodcasterPlus

PodcasterPlus: enabling podcasters to focus on creating great content by automating everything else.

Product
  • Hosting
  • Workflows
  • Guest Network
  • Booking Links
  • Show notes
  • Transcripts
  • Automations
  • Templates
  • Magic tags
Company
  • About
  • Customers Coming
  • Careers Coming
  • Podcast
  • Press Coming
  • Manifesto
Resources
  • Blog
  • Changelog Coming
  • Help centre
  • Migration guides Coming
  • API docs Coming
  • FAQs
Blocks
  • Downloads & licenses
  • Documentation
Legal
  • Legal centre
  • Terms
  • Privacy
  • Acceptable use
  • DPA Coming
© 2026 PodcasterPlus - All rights reserved.
Status: all systems normal · v0.9.4