Reputation: 207
I have small issue with the button "Continue To Payment" at checkout into my Woocommerce page. I checked with inspect element, and found that button is controled by this CSS:
button#place_order.button .fusion-button .button-default .fusion-button-
default-size .alt {
margin-top:-150px !important;
}
I inserted this into Custom CSS, but nothing changes. How can I move that button up by 150px to top?
Upvotes: 0
Views: 764
Reputation: 584
All classes belong to the button, so they must go without spaces.
button#place_order.button.fusion-button.button-default.fusion-button-default-size.alt {
margin-top:-150px !important;
}
Upvotes: 1