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?
@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?
@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!