Custom CSS
Override any theme with custom CSS.
For full control, add custom CSS directly to any page.
Where to Add CSS
- Admin > Pages > [Your Page] > Advanced > Custom CSS
- Write standard CSS using the theme token variables
- Save and preview instantly
Example: Custom Card Hover
.lb-link-card {
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lb-link-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
Example: Custom Font
body {
font-family: 'Your Font', system-ui, sans-serif;
}
Scoping
Custom CSS applies to the public page only, not the admin dashboard.