Comment personnaliser ma page de paiement HiPay Professional ?
For HiPay Professional (formerly Wallet/Direct):
To customize your HiPay Professional payment page, you can add a CSS in the website configuration section of your former back office (Register a new website/Button -> Edit -> Cascading Style Sheet).
Here is a basic CSS example:
/* Add a logo in HTTPS */
background: url("https://example.com/test.jpg");
/* Add a background */
body {
background-image: url("https://mysite.com/img/background.jpg");
background-position: center top;
background-repeat: no-repeat;
}
/* Change the color of the submit button */
.btn-primary {
background-image: -webkit-linear-gradient(top,#86D1F3 0,#5b31dd 100%);
border-color : #0400f3;
}
.btn-primary:hover {
background-image: -webkit-linear-gradient(top,#5b31dd 0,#86D1F3 100%);
border-color : #0400f3;
background-position: inherit;
}