> 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/it/apps-integrations/shopify/online-store/customize-cart-verification-script-styles.md).

# Personalizza gli stili dello script di verifica del carrello

Se il messaggio predefinito dello Script di Verifica Carrello non corrisponde all'aspetto del tuo negozio, puoi personalizzarlo con CSS.

## Selettori CSS

Usa questi selettori per stilizzare il messaggio di verifica:

* `sesami-warning-list` — il contenitore di tutti i messaggi di avviso
* `sesami-warning-item` — ogni singolo messaggio di avviso

## Esempi

### Sfondo bianco con larghezza massima

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

### Tema scuro (sfondo nero, testo bianco)

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

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

## Dove aggiungere il CSS

Aggiungi il tuo CSS personalizzato al tema Shopify:

1. Vai su **Shopify Admin > Negozio online > Temi > Personalizza**
2. Apri **Impostazioni tema** (icona a ingranaggio)
3. Trova la **CSS personalizzato** sezione (o aggiungi un blocco CSS personalizzato)
4. Incolla i tuoi stili e salva

## Hai bisogno di aiuto?

Se non ti senti a tuo agio nel modificare il CSS, contattaci a <help@sesami.co> con lo stile desiderato (descritto o come file di design) e il nostro team lo farà per te senza costi aggiuntivi (solo piani a pagamento).

## Correlati

* [Script di verifica del carrello](/it/apps-integrations/shopify/online-store/cart-verification-script.md) — come funziona lo script e come abilitarlo


---

# 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:

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

The question should be specific, self-contained, and written in natural language.
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.
