''Paypal'' button seems invisible on my cart page

Hello!

I’ve recently noticed theres a gap between the ‘‘checkout’’ button and ‘‘continue browsing’’ text. Normally there used to be a paypal express button there but for some unknown reason, it dissapeared.

Now I never really cared about that button but the gap is what’s bothering me the most. Doesn’t look right.

Could anyone help bring the button back or somehow remove the gap? Whichever way works fine.

I’ve added a screenshot as well.

Thanks!

My store URL is: jasaoslaj.com

@jasa11

This is code customization work!

Thanks!

To bring back the PayPal Express button or remove the gap between the “Checkout” button and “Continue Browsing” text in your Shopify store, you’ll need to make modifications to the theme code. Here’s a general approach you can follow:

  1. Open the theme editor: Go to your Shopify admin panel, navigate to “Online Store,” and click on “Themes.” Locate your active theme and click on the “Actions” dropdown, then select “Edit code.”

  2. Locate the cart template: In the theme editor, find the cart template file. It is usually named cart.liquid or something similar.

  3. Find the code for the “Checkout” and “Continue Browsing” buttons: Look for the code that generates the “Checkout” button and the “Continue Browsing” text. This might be inside a <form> tag or a specific section of the cart template.

  4. Add the PayPal Express button code: If you want to bring back the PayPal Express button, find the appropriate location within the code and insert the following code:

{{ form | payment_button }}

This code generates the PayPal Express button based on your store’s payment settings.

  1. Remove the gap between buttons: If you want to remove the gap between the buttons instead, find the code responsible for styling or spacing the buttons. This could be CSS code or specific HTML markup. Adjust the code to remove any margin or padding that creates the gap.

  2. Save and test: After making the changes, click on the “Save” button and test the cart page on your website. Verify that the PayPal Express button is displayed or the gap between the buttons is removed as desired.