0

I am working with Stripe code section, my requirement is to remove the "Close Button" from Stripe Modal Dynamically. Stripe popup is coming in Iframe on my page load. So how can i remove the button.

enter image description here

Anshul
  • 116
  • 1
  • 10

1 Answers1

0

You can remove close button on stripe popup be css

.Checkout.is-desktop .Header-navClose {
    background-image: none !important;
}
PPL
  • 6,357
  • 1
  • 11
  • 30
  • No this is not working as the Stripe Modal is loaded in iframe on page after some time. So elements are not bounded. – Anshul May 22 '18 at 12:31