I can not center the button with css

0

I can not centralize the proceed to checkout button. I wanted to pass the paypal to the left side. Someone can help me, I'm using wordpress.

link

    
asked by anonymous 28.06.2016 / 16:56

1 answer

0

You need to add the following css in your stylesheet:

.woocommerce #payment {
float: none !important;
width: 76% !important;
margin: 0 auto;
}
.form-row.place-order {
background-color: transparent;
}

It is not the best solution, ideally you should pass your css code where you are having difficulty so that we can help you better.

    
02.07.2016 / 01:50