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.| Class | CSS | Typical use |
|---|---|---|
.uppercase | text-transform: uppercase; | Section labels, badges, navigation |
.lowercase | text-transform: lowercase; | Code identifiers, stylistic headings |
.underline | text-decoration: underline; | Link emphasis, inline callouts |
.no-underline | text-decoration: none; | Remove default link underline |
.italic | font-style: italic; | Quotes, citations, calls to action |
Example
Style Guardrails
- Reserve
.uppercasefor short labels; long uppercase paragraphs quickly lose readability. - Use
.no-underlinealongside a hover state (e.g..underlineon hover) so links remain discoverable. - Italic text can appear faint at lighter weights—bump to
.font-mediumor 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.

