You should be able to get that done with some general CSS adjustment on your site. What is the URL where a button is displayed? I’ll take a look and see if I can give you a quick tip on centering it.
Take a look at this: http://fiber.angelleye.com/forums/wordpress-plugins/offers-for-woocommerce-center-button.jpg
I was able to get that centered by applying the following rules to the class…
.single_variation_wrap_angelleye_ofwc_offer_tab_form_wrap {
width: 175px;
margin-left: auto;
margin-right: auto;
}
Thank you for the suggestion, Angelleye. That class isn’t in the code, however.
This is:
single_variation_wrap_angelleye ofwc_offer_tab_form_wrap
Notice the break in the middle. Is that an oversight in the coding?
Yes, that’s what I meant, sorry.
That worked. Thanks! Below is the code that works.
.single_variation_wrap_angelleye.ofwc_offer_tab_form_wrap {
width: 175px;
margin-left: auto;
margin-right: auto;
}