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

# Dostosuj style skryptu weryfikacji koszyka

Jeśli domyślna wiadomość skryptu weryfikacji koszyka nie pasuje do wyglądu Twojego sklepu, możesz dostosować ją za pomocą CSS.

## Selektory CSS

Użyj tych selektorów, aby wystylizować komunikat weryfikacyjny:

* `sesami-warning-list` — kontener dla wszystkich komunikatów ostrzegawczych
* `sesami-warning-item` — każdy pojedynczy komunikat ostrzegawczy

## Przykłady

### Białe tło z maksymalną szerokością

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

### Ciemny motyw (czarne tło, biały tekst)

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

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

## Gdzie dodać CSS

Dodaj własny CSS do motywu Shopify:

1. Przejdź do **Panel administracyjny Shopify > Sklep internetowy > Motywy > Dostosuj**
2. Otwórz **Ustawienia motywu** (ikona koła zębatego)
3. Znajdź **Własny CSS** sekcja (lub dodaj własny blok CSS)
4. Wklej swoje style i zapisz

## Potrzebujesz pomocy?

Jeśli nie czujesz się pewnie, edytując CSS, skontaktuj się z nami pod adresem <help@sesami.co> z wybranym stylem (opisanym lub jako plik projektu), a nasz zespół wykona to za Ciebie bez დამატkowych kosztów (tylko w płatnych planach).

## Powiązane

* [Skrypt weryfikacji koszyka](/pl/apps-integrations/shopify/online-store/cart-verification-script.md) — jak działa skrypt i jak go włączyć


---

# 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/pl/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.
