Is it possible to customize the Close / ‘X’ button on pop-up forms?
For example, can the Close button be changed to something like “No thanks, I’m not interested”?
Any help or direction is appreciated. Thanks!
Is it possible to customize the Close / ‘X’ button on pop-up forms?
For example, can the Close button be changed to something like “No thanks, I’m not interested”?
Any help or direction is appreciated. Thanks!
Hi @cpburke
Yes, this is possible with some CSS styling. The following might need some tweaking to achieve the style you want but try adding something like the following CSS code to the page with your pop-up form.
.leadinModal .leadinModal-close:before {
display:none !important;
}
.leadinModal .leadinModal-close:after {
content: "No Thanks, I'm Not Interested! \00D7";
font-size: 18px;
font-weight: normal;
text-align: right;
color: #bbb;
padding-top: 6px;
padding-right: 12px;
}