Skip to main content

Overview

Skelementor includes pre-built components that work seamlessly with Elementor v4’s Atomic Elements. These components provide consistent styling and behavior out of the box, saving you time while maintaining design consistency. Use these components as building blocks for your layouts. They’re designed to work together and can be customized with utility classes.

Quick Start

Basic Components

<!-- Button -->
<button class="btn btn-blue">Primary Button</button>
<button class="btn btn-green btn-lg">Large Success Button</button>

<!-- Card -->
<div class="card p-6">
  <h3 class="text-xl font-semibold mb-4">Card Title</h3>
  <p class="text-gray">Card content goes here.</p>
</div>

<!-- Container -->
<div class="cont">
  <h1 class="text-3xl font-bold mb-6">Page Title</h1>
  <p class="text-lg text-gray">Centered content with max width</p>
</div>

Component Combinations

Components work great together:
<div class="cont">
  <div class="card p-6">
    <h3 class="text-xl font-semibold mb-4">Card Title</h3>
    <p class="text-gray mb-4">Card content with action button</p>
    <button class="btn btn-blue">Action</button>
  </div>
</div>