Skip to content
nuvi
Pricing
Blog
nuvi

KI-gestützte digitale Business-Plattform. Jede Website, mit künstlicher Intelligenz.

Product

  • Features
  • Themes
  • Multi-store
  • Integrations
  • Pricing
  • Changelog
  • Webmail

Solutions

  • E-commerce
  • Travel & Tours
  • Events & Ticketing
  • Services / B2B
  • Blog & Media
  • Digital Products
  • All industries

Modules

  • Subscription
  • Quote
  • Import
  • Blog
  • Media
  • Search
  • Analytics
  • Localization
  • All 22 modules

AI Skills

  • Store Setup Wizard
  • Content Editor
  • Image Generator
  • Marketing Manager
  • SEO Auditor
  • Automation Manager
  • All 24 skills
  • AI Credits

Services

  • Custom Domain
  • Branded Email
  • Stripe
  • Iyzico
  • PayTR
  • AI Credits
  • SLA & Security
  • All services

Developers

  • API Reference
  • Documentation
  • Webhooks
  • Open Source
  • Status
  • Developers
© 2026 nuvi. Alle Rechte vorbehalten.
  • Terms of Service·
  • Privacy Policy·
  • Cookie Policy·
  • Data Deletion·
  • Acceptable Use·
  • Refund Policy·
  • DPA / GDPR·
  • KVKK
Powered by nuvi|
Themes & Design

Adding Custom CSS

Learn where to add custom CSS to your Nuvi store, what safety restrictions apply, and see common examples.

Nuvi TeamApril 10, 20262 undefined

Adding Custom CSS

While Nuvi themes provide extensive customization through the visual editor, sometimes you need fine-grained control over specific elements. Custom CSS lets you override styles, hide elements, or add visual effects that are not available in the theme settings.

Where to Add Custom CSS

You can add custom CSS through the theme customization panel:

  1. Navigate to Settings > Themes > Customize.
  2. Scroll to the "Custom CSS" section at the bottom.
  3. Enter your CSS in the code editor.
  4. Click "Save" — changes apply immediately to your live storefront.

Alternatively, you can use the AI assistant: "Add custom CSS to hide the breadcrumb on mobile".

Safety Restrictions

For security reasons, Nuvi sanitizes custom CSS to prevent malicious code:

  • No JavaScript — expression(), url(javascript:), and event handlers are stripped.
  • No external imports — @import rules referencing external URLs are blocked.
  • No position: fixed overlays — You cannot create overlays that cover the entire viewport.
  • Standard CSS properties — All standard CSS properties like color, font-size, margin, display, grid, and flex are fully supported.

Common Examples

Here are frequently requested custom CSS snippets:

Hide the Announcement Bar

.announcement-bar {
  display: none !important;
}

Override Heading Font

h1, h2, h3 {
  font-family: 'Georgia', serif !important;
  letter-spacing: -0.02em;
}

Make Product Images Rounded

.product-card img {
  border-radius: 12px;
}

Adjust Mobile Navigation Size

@media (max-width: 768px) {
  .mobile-nav a {
    font-size: 18px;
    padding: 12px 16px;
  }
}

Tips and Best Practices

  • Use your browser's Inspect Element tool to find the correct CSS class names.
  • Avoid !important unless necessary — it makes future overrides harder.
  • Test on both desktop and mobile after adding custom CSS.
  • Keep your custom CSS minimal — rely on theme settings for standard changes.
  • Comment your CSS with /* ... */ so you remember what each rule does.

Yazar Hakkında

NT
Nuvi Team
Tüm yazıları →

Verwandte Artikel