Styling dropin-in components
Overriding and adding CSS classes for drop-in components provides the next level of customizing your storefront dropin-in components. By modifying a drop-in component’s built-in CSS classes and adding additional classes, you can quickly change the built-in classes to meet your specifications. You’ll find best-practices for styling here.
The CSS classes for each UI component that provides the product details drop-in component with its UI are provided here. Override these classes and add new classes to customize the look and feel of your PDP drop-in component to match your specific style requirements.
Step-by-step
The quickest way to override the CSS classes used in the drop-in component is to inspect the drop-in component’s UI from your browser’s developer tools. The following example shows a product details component with the classes applied to the UI components that compose the drop-in:
- Inspect the element in the UI that you want to customize (right-click on the element and select “Inspect” from the menu).
- Identify the CSS class(es) for the element. We use BEM naming, which makes it easy to know which component you’re changing (and which CSS file to use). This class styles the
Product
component, so use yourproduct.css
file. - Copy the CSS class to your
product.css
file to override the existing rules or add new rules to the class. But wait! Look closely 🧐 at the.pdp-product__title
class. It’s using two design tokens. And when you see a design token within a CSS rule, don’t remove the token. Instead, change the token’s value (where it’s defined) OR create a new token along-side this existing one to ensure maintenance and updates continue to benefit from global design token usage.
Example overrides
Here’s an example of adding CSS class overrides to your product.css
file: