Viewing 1 replies (of 1 total)
  • hrn1995 (woo-hc)

    (@aguinaldodarla)

    Hi @maticzm

    Could you please share the website, so we can inspect it? Also, kindly ensure that all plugins are also up-to-date. In the meantime, I suggest performing a conflict test by switching to a default WordPress theme, and then deactivating all plugins except WooCommerce to see if the issue is gone, if yes, that means a theme or a plugin is contributing to the issue. Re-enable each to see which one causes it. You can find a more detailed explanation of how to do a conflict test here.

    In case it didn’t help, as a workaround, you can also use this sample CSS snippet to adjust the button’s size. Remember to replace .your-button-class with the actual class or ID associated with your “Go to Payment” button.

    /* Adjust the button height */
    .your-button-class {
        height: 40px; /* Adjust the height value as needed */
        line-height: 40px; /* Match the button height for vertical alignment */
        padding: 0 15px; /* Adjust padding as needed */
    }
    
    /* Center the text vertically */
    .your-button-class span {
        display: inline-block;
        vertical-align: middle;
        line-height: normal;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘How can I change this button?’ is closed to new replies.