Skip to main content

Style the Checkout with CSS

Using Bold Checkout, you can style your store's checkout experience using CSS rules. How this works depends on what type of checkout flow you are using: Bold-hosted, or self-hosted.

This page outlines how to style both kinds of checkout experience.

Bold-hosted checkout

The steps in this section outline how to style a Bold-hosted checkout flow.

note

CSS settings are store-level settings that apply across all Bold-hosted checkout flows on your store. You cannot apply different CSS rules to different Bold-hosted checkout flows. To have full control over the look and feel of a flow, create a self-hosted checkout flow.

Prerequisites

Complete the instructions outlined in the Checkout Getting Started guide.

note

Bold recommends first completing these steps on a local or development store to avoid undesired changes on your production store.

Identify CSS changes

Bold accepts standard-formatted CSS rules. Identify the classes you want to change by visiting the checkout page with Bold Checkout enabled and inspecting the page.

Some common CSS changes can be divided into several groups, outlined in the following table:

TypeDescriptionSample Class Values
AccentsAdjust color and style of the clickable links and form fields.Button, a, InputField, ToggleField__Input, AppliedDiscount_Code
HoversAdjust the colors that appear when hovering over a button or link.Button, a
BackgroundsAdjust the color of the background in one of two locations: behind the form fields, or behind the order summary.Checkout__Main, Checkout__Summary
ErrorsAdjust the color of the error that appears when a customer's input is invalid.Field__Message

For example, to change the color of selected radio buttons to purple, you can use the following CSS:

.stx-radio-field .stx-radio--is-checked input {
box-shadow: 0 0 0 6px #7a5af5 inset;
}

The following screenshot shows the outcome of this CSS change:

Screenshot showing purple radio buttons

Payment Isolation Gateway Interface

The Payment Isolation Gateway Interface (PIGI) is the interface that your customer uses to input their payment information. It is rendered using an iframe in order to keep the payment information secure. You can make minor CSS changes to this interface as well.

CSS changes that impact the PIGI interface must use the identifier #iframe-payment-gateway.

For example, to apply the CSS rule from the previous section to PIGI, add the following to your CSS rules:

#iframe-payment-gateway .stx-radio-field .stx-radio--is-checked input {
box-shadow: 0 0 0 6px #7a5af5 inset;
}

The following screenshot shows the outcome of this CSS change:

Screenshot showing purple radio buttons in PIGI

Apply CSS changes

Once you have determined the CSS changes you would like to make, apply them to your store with the following steps:

  1. Navigate to the Bold Checkout admin.
  2. In the left-hand menu, navigate to Settings > General settings.
  3. Scroll down until you find the Appearance section. In the Custom CSS field, paste your CSS code. Click Save. Screenshot of Appearance section
  4. Navigate to your storefront and refresh the page. The changes take effect immediately.

Self-hosted checkout

With a self-hosted checkout, you have full control over the look and feel of your store's checkout experience. The approach for applying CSS rules differs slightly based on whether you build your self-hosted checkout flow from Bold's Checkout Experience Templates, or you build your flow from scratch.

From the Checkout Experience Templates

You can use Bold's Checkout Experience Templates to accelerate the process of creating a self-hosted checkout flow.

After setting up the Checkout Experience Templates following the instructions in Create a Self-Hosted Checkout Flow, you can directly edit the existing CSS files:

From scratch

When creating a checkout flow from scratch, you can apply your own CSS styling rules in whatever way you see fit. However, the Payment Isolation Gateway Interface (PIGI) is protected from site-wide CSS styling in order to protect your customer's payment information.

To edit the look and feel of PIGI on all orders for your store, you must use the Create Shop Payment Styling endpoint.

note

The Create Shop Payment Styling endpoint applies the styling to all orders for your store.

If you want to apply styling on a per-order basis, you must instead call the Create CSS Styling for PIGI endpoint, which is authenticated with a JWT.

You can apply both CSS rules and media rules using this endpoint. Include the rules in JSON format, as shown in the following example call:

curl --request POST 'https://api.boldcommerce.com/checkout/shop/{shop_identifier}/payment_css' \
--header 'Authorization: Bearer {API Access Token}' \
--header 'Bold-API-Version-Date: 2022-05-01' \
--header 'Content-Type: application/json' \
--data '{
"css_rules": [
{
"cssText": ".ToggleField { color:red; }"
}
],
"media_rules": [
{
"conditionText": "screen and (max-height: 600px)",
"cssRules": [
{
"cssText": ".ToggleField__Text { color:blue; }"
}
]
}
]
}'

Navigate to your storefront and refresh the page. The changes take effect immediately.