← EditorDashboardMCP SetupLanding

Custom CSS Reference

Use the Custom CSS field in the Styles panel to target semantic class hooks on every slide element. Your CSS applies in the editor preview and in PNG / PDF exports.

DOM Hierarchy

.slide
  .card
    .logo
    .slide-count
    .content.block
      .h1 / .h2 / .h3 / .h4 / .h5 / .h6
      .text
      .list > .list-item
      .image

Available Classes

ClassDescription
.slideThe slide root container (1080×1080 or 1080×1350). Wraps everything.
.cardThe template/card wrapper inside each slide. Controls background, padding, etc.
.logoWrapper around the brand logo image (top-right by default).
.slide-countThe slide counter text (e.g. "1 / 5") at the bottom of each slide.
.contentThe content area that holds all editor blocks.
.blockThe block container that applies fill/border styles from the theme.
.h1 – .h6Heading elements at each level.
.textBody/paragraph text elements.
.listOrdered or unordered list container (<ol> or <ul>).
.list-itemIndividual list items (<li>).
.image<figure> wrapper around inline images.
.buttonButton elements (used in CTA slides / theme preview).

Examples

Change heading color on all slides

.h1, .h2, .h3 {
  color: #E11D48;
}

Add a border to the card

.card {
  border: 2px solid #3B82F6;
  border-radius: 24px;
}

Style the slide counter

.slide-count {
  font-size: 24px;
  font-weight: 700;
  color: #8B5CF6;
}

Hide the logo on all slides

.logo {
  display: none;
}

Add a gradient background

.card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

Tips