How can I center the Shop Pay icon and remove extra text on my product page?

I am having two issues with formatting when you click on any of my products. Please click here and see attached.

https://shopoatful.com/products/2-flavor-variety-bundle?pr_prod_strat=copurchase&pr_rec_pid=6086920044703&pr_ref_pid=7522179580119&pr_seq=uniform

You will notice two things:

  1. Underneath add to cart, you will notice that the shop pay icon is to the left. How to allign it in the midde? See screenshot.

  1. If you scroll to the very very bottom of the page, you will notice additional text. How do I remove this? Please see attached.

Hi @ym24

  1. If you scroll to the very very bottom of the page, you will notice additional text. How do I remove this? Please see attached.

Go to product.liquid template file.
Find this content and remove it.

  1. Underneath add to cart, you will notice that the shop pay icon is to the left. How to allign it in the midde? See screenshot.
    This is looking fine at my end.

You can also add the below CSS to hide it for certain customers:

.wrapper.main-content > .grid > .grid__item > p:last-of-type {display: none;}

@ym24

Please Apply this CSS to your css file

.wrapper.main-content .grid .grid__item p:last-of-type {
display: none;
}

Thanks You!