Skip to main content

Branding Resources

The Walley Checkout badge is a small trust signal you can display on your site β€” a Walley logo paired with an illustrative set of payment method icons. Placing it on product pages, in your footer, or near the checkout button tells customers that Walley Checkout is available.

Looking for a live list of payment methods?

The badge is a static image β€” the icons shown are illustrative of what's typically offered in that market, not a live or personalized list of the methods available to a given customer. For a dynamic display that adapts to country, cart amount, and your Walley configuration, use the Payment method logos widget instead.

Resource location​

All badges are delivered as SVG, so they scale to any size without quality loss. They follow this URL pattern:

https://cdn.walleypay.com/logo/walley-checkout-badge-{locale}-{variant}.svg

Example:

https://cdn.walleypay.com/logo/walley-checkout-badge-sv-SE-color-on-light.svg

Each badge is a vector SVG with an intrinsic viewBox of 366 Γ— 115 (aspect ratio β‰ˆ 3.2 : 1). File size depends on the variant and locale: color variants are ~80–110 KB, mono variants ~20–55 KB. Because it's vector, it renders crisply at any size β€” use the max-width guidance in the snippet below rather than matching intrinsic pixels.

We recommend linking directly to the CDN URL. Walley occasionally updates the artwork (for example, when adding a payment method), and direct linking means your site picks up the new version with no deploy on your side. If you must self-host β€” CSP restrictions, procurement rules, or offline/print contexts β€” be aware you'll need to re-fetch when we update the artwork.

Preview​

Preview a badge for any supported locale and variant, and copy a ready-to-paste snippet.

Betala med Walley β€” faktura, kort, Swish med mera
https://cdn.walleypay.com/logo/walley-checkout-badge-sv-SE-color-on-light.svg
<img
src="https://cdn.walleypay.com/logo/walley-checkout-badge-sv-SE-color-on-light.svg"
alt="Betala med Walley β€” faktura, kort, Swish med mera"
style="max-width: 240px; height: auto;"
/>

Accessibility​

Screen readers announce the alt attribute in place of the image, so use it to convey what the badge communicates visually. Set a description that names the market's notable local payment method, and write it in the language of the surrounding page (which will usually match the badge locale):

LocaleSuggested alt text
sv-SEBetala med Walley β€” faktura, kort, Swish med mera
en-SEPay with Walley β€” invoice, card, Swish, and more
nb-NOBetal med Walley β€” faktura, kort, Vipps med mer
fi-FIMaksa Walleylla β€” lasku, kortti, MobilePay ja muut
sv-FIBetala med Walley β€” faktura, kort, MobilePay med mera
da-DKBetal med Walley β€” faktura, kort, MobilePay og flere

Example:

<img
src="https://cdn.walleypay.com/logo/walley-checkout-badge-sv-SE-color-on-light.svg"
alt="Betala med Walley β€” faktura, kort, Swish med mera"
style="max-width: 240px; height: auto;"
/>

Automatic dark mode​

To switch between the light and dark variants based on the user's system preference, use a <picture> element:

<picture>
<source
srcset="https://cdn.walleypay.com/logo/walley-checkout-badge-sv-SE-color-on-dark.svg"
media="(prefers-color-scheme: dark)"
/>
<img
src="https://cdn.walleypay.com/logo/walley-checkout-badge-sv-SE-color-on-light.svg"
alt="Betala med Walley β€” faktura, kort, Swish med mera"
style="max-width: 240px; height: auto;"
/>
</picture>

Variants​

Four variants are available. Pick the one that contrasts best with your surroundings.

VariantWhen to use
color-on-lightLight backgrounds. Colorful gradient Walley logo + payment methods. The default.
color-on-darkDark backgrounds. Colorful logo tuned for contrast against dark surroundings.
mono-on-lightLight backgrounds where you want a single-color badge (e.g. monochrome print or minimalist UI). Black logo.
mono-on-darkDark backgrounds where you want the logo and payment methods rendered in a single color. White logo.

Countries and locales​

The country code in the URL controls two things inside the badge:

  1. The language of any text rendered inside the SVG.
  2. Which payment methods appear as icons β€” these reflect the typical set available in that market (e.g. Walley invoice variants differ by market), but are not filtered per customer or cart.

Currently available:

CodeMarket
sv-SESweden β€” Swedish
en-SESweden β€” English
nb-NONorway β€” Norwegian BokmΓ₯l
fi-FIFinland β€” Finnish
sv-FIFinland β€” Swedish
da-DKDenmark β€” Danish

Today, English is only offered for the Swedish market (en-SE). For pan-Nordic rollouts, use the local-language variant in each market.

Delivery​

The badge is served from cdn.walleypay.com, a globally cached CDN. CORS is open (Access-Control-Allow-Origin: *), so the asset can be used cross-origin from <img>, <picture>, and fetch() contexts.