Woocommerce Tabbed Button Size

In trying to determine how to change the button size in woocommerce within Pro, not sure if its a woocommerce setting or a theme, but the buttons that are the tabs for dashboard, orders, etc. are difficult to locate and I’m unable to edit the styling, as well as the drop shadow around the my account section. Any ideas?

Hi there,

Thanks for writing in! You can customize WooCommerce buttons via custom CSS, just add the following CSS code in the Theme Options > CSS:

.woocommerce-MyAccount-navigation-link a {
    padding: 15px !important;
    box-shadow: none !important;
    font-size: 16px !important;
}

Feel free to adjust the values or add more properties as per your need.

Hope this helps!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.