---
title: "Style Place Order Button in Checkout Page Virtue and Pinnacle"
source: "https://docs.nexcess.com/software/kadence/style-place-order-button-in-checkout-page-virtue-and-pinnacle/"
description: "By default, your button colors will be set in Theme Options> Basic Styling.  To change the styling of the Place Order button in the checkout page, add this CSS…"
vertical: "Software"
area: "Kadence"
date: "2021-07-16"
last_modified: "2021-07-16"
---

# Style Place Order Button in Checkout Page Virtue and Pinnacle

By default, your button colors will be set in Theme Options> Basic Styling. To change the styling of the Place Order button in the checkout page, add this CSS to the Theme Options> Custom CSS box:

```
[css]#payment #place_order {
    
    background: #8b909a;
}

#payment #place_order:hover {
    color: #8b909a;
    background: #000;
}[/css]
```

Change the colors to whatever you need, and add properties to the CSS as wanted.
