# Customize Cart Verification Script Styles

If the default Cart Verification Script message doesn't match your store's look, you can customize it with CSS.

## CSS Selectors

Use these selectors to style the verification message:

* `sesami-warning-list` — the container for all warning messages
* `sesami-warning-item` — each individual warning message

## Examples

### White background with max width

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

### Dark theme (black background, white text)

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

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

## Where to add the CSS

Add your custom CSS to your Shopify theme:

1. Go to **Shopify Admin > Online Store > Themes > Customize**
2. Open **Theme Settings** (gear icon)
3. Find the **Custom CSS** section (or add a custom CSS block)
4. Paste your styles and save

## Need help?

If you're not comfortable editing CSS, contact us at <help@sesami.co> with your desired style (described or as a design file) and our team will do it for you at no additional cost (paid plans only).

## Related

* [Cart Verification Script](/apps-integrations/shopify/online-store/cart-verification-script.md) — how the script works and how to enable it


---

# Agent Instructions: 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/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.
