Hi, is there a way to customize the position of the notification cards? We would like to move them a little higher than the bottom right corner as unfortunately they cover some footer elements. Thanks
Hi,
You can change the notification card position by adding the CSS in your webpage. Please use the following CSS rule to position the Notification Card
#webpushr-notification-card-wrapper.show-webpushr-notification-card {
bottom: 100px !important;
}
You can change the values 100px according your requirements
It works. Thank you!