> For the complete documentation index, see [llms.txt](https://help.sesami.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.sesami.co/de/apps-integrations/shopify/online-store/customize-cart-verification-script-styles.md).

# Stile des Warenkorb-Verifizierungsskripts anpassen

Wenn die Standardnachricht des Cart Verification Script nicht zum Erscheinungsbild deines Shops passt, kannst du sie mit CSS anpassen.

## CSS-Selektoren

Verwende diese Selektoren, um die Verifizierungsnachricht zu stylen:

* `sesami-warning-list` — der Container für alle Warnmeldungen
* `sesami-warning-item` — jede einzelne Warnmeldung

## Beispiele

### Weißer Hintergrund mit maximaler Breite

```css
sesami-warning-list {
    background: #FFF;
    max-width: 400px;
}
```

### Dunkles Theme (schwarzer Hintergrund, weißer Text)

```css
sesami-warning-list {
    background: #000;
    color: #FFF;
    max-width: 400px;
}

sesami-warning-item {
    color: #FFF;
}
```

## Wo du das CSS hinzufügen kannst

Füge dein benutzerdefiniertes CSS zu deinem Shopify-Theme hinzu:

1. Gehen Sie zu **Shopify-Admin > Onlineshop > Themes > Anpassen**
2. Öffnen Sie **Theme-Einstellungen** (Zahnrad-Symbol)
3. Finden Sie den **Benutzerdefiniertes CSS** Bereich (oder füge einen benutzerdefinierten CSS-Block hinzu)
4. Füge deine Stile ein und speichere sie

## Benötigen Sie Hilfe?

Wenn du dich mit der Bearbeitung von CSS nicht wohlfühlst, kontaktiere uns unter <help@sesami.co> mit deinem gewünschten Stil (beschrieben oder als Designdatei), und unser Team erledigt es für dich ohne zusätzliche Kosten (nur für kostenpflichtige Pläne).

## Verwandt

* [Skript zur Warenkorbprüfung](/de/apps-integrations/shopify/online-store/cart-verification-script.md) — wie das Skript funktioniert und wie man es aktiviert


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.sesami.co/de/apps-integrations/shopify/online-store/customize-cart-verification-script-styles.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
