How to fix disproportionate 'Buy Now' button on Impact theme?

Hello,

I’m currently using the Impact theme from Maestrooo, and i’m encountering an issue with the “Buy Now” button being disproportionate in all products. Despite trying to address it with CSS it doesn’t fix it, I’ve reached out to Maestrooo’s customer service team, who informed me that Shopify manages the purchase buttons and is responsible for fixing such issues. On contacting Shopify support, they stated that the problem lies with the theme creator (Maestroo). Unfortunately, neither party has been able to provide a solution after two weeks of escalating the issue.

I haven’t made any changes other than minor CSS adjustments. Any assistance would be greatly appreciated.

My website: www.strobin.com.pe

Hi @Robingaravito There seems to be the issue with your theme css code files that is causing you this issue, you need to go through it, but till then you can use this code and it will fix your issue.

Please add the code in your theme.css/base.css/style.css file which is available in your theme.

button.shopify-payment-button__button.shopify-payment-button__button--unbranded {
    height: unset !important;
}

If you are not sure where is your theme.css/base.css/index.css/style.css file please follow the steps:

  1. Login in shopify admin.
  2. Click on the Online Store.
  3. Then click on the button next to Customize in live Theme.
  4. Click Edit Code.
  5. Search theme.css/base.css/index.css/style.css in the code in left hand side which ever is available in your theme.
  6. You can add the above code at the bottom of the file.

Result:

If you will unable to implement the same then I’m happy to do this for you, let me know. I can implement the code changes so that this will work well for you.

If you need any other assistance then feel free to ask the same.

Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!

Best Regards

Sahil

Hi @Robingaravito

You can solve it by adding this code at the bottom of your theme.css.liquid file

.shopify-payment-button__button {
min-height: 59px;
}