Skip to main content

Documentation Index

Fetch the complete documentation index at: https://skelementorcss.com/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Use text-style utilities for simple emphasis and casing changes without extra CSS.
ClassCSSTypical use
.uppercasetext-transform: uppercase;Section labels, badges, navigation
.lowercasetext-transform: lowercase;Code identifiers, stylistic headings
.underlinetext-decoration: underline;Link emphasis, inline callouts
.no-underlinetext-decoration: none;Remove default link underline
.italicfont-style: italic;Quotes, citations, calls to action

Example

<div class="elementor-element flex flex-col gap-2">
  <p class="text-sm uppercase tracking-wide text-gray">
    Release notes
  </p>
  <h3 class="text-3xl font-semibold text-black">
    Version 1.4.0 sharpens the bundled typography system
  </h3>
</div>
Combine .uppercase with .tracking-wide or .tracking-wider to prevent capped text from feeling cramped.

Style Guardrails

  • Reserve .uppercase for short labels; long uppercase paragraphs quickly lose readability.
  • Use .no-underline alongside a hover state (e.g. .underline on hover) so links remain discoverable.
  • Italic text can appear faint at lighter weights—bump to .font-medium or higher if contrast is low.
Inline emphasis should come from utility classes, not manual HTML elements. This keeps your Elementor global styles consistent and easy to audit.