How to center the 'Add To Cart' button on my website?

I am using my website and adding the add to cart embed codes. How do I align the add to cart button? I am imagining it is within the code?

https://inspireeducation.ie/shop-roi/

@joecaffrey Hello to center the Add to cart button

Add the code to your css file on the below of that file.

The file could be style-static.min.css but

.et_pb_code_0 .et_pb_code_inner{
display: flex;
justify-content: center;
}
1 Like

Thanks. Do I add this CSS code within wordpress?

@joecaffrey Yes. Add that code in to the css file.

1 Like

Thanks. that worked with the top add to cart button. But he bottom button is still aligned left. Any ideas?

https://inspireeducation.ie/shop-roi/

@joecaffrey add this code also in the same file

.et_pb_code_1 .et_pb_code_inner{
display: flex;
justify-content: center;
}
1 Like

perfect it worked appreciate it!