It is possible to move the x (height and width) position with css.
Philipp Answered question August 26, 2022
Hi Serginho,
Yes, it’s possible to adjust the position (and design) of the close button via CSS. Use the selector .area-outer-wrap .da-close { }
 to do this.
For example:
.area-outer-wrap .da-close { Â Â Â Â right: -10px; Â Â Â Â top: -10px; Â Â Â Â border-radius: 50px; Â Â Â Â background: #fff!important; Â Â Â Â opacity: 1; Â Â Â Â border: 1px solid #000; }
Here’s the result of the above changes: Button moved slightly outside the Popup, and round corners, etc.
You can also search the knowledge base for “customize close button” to find more details on that matter.
Please let me know if you need additional guidance on this.
Philipp Edited answer August 26, 2022