How to replace cross icon in close button with custom text

Hi @James_Cole welcome to community :clap:

This should be possible with this Custom CSS workaround.

[class*="close-button__CloseButtonContainer-sc"]::before{
  content: "CLOSE" !important;
  color: #000;
  font-size: 12px !important;
}
3 Likes