Hi @alfredo49,
Do you want to replace the text entirely, or rather add an icon before the text? If you just want to add the icon to a button, you could do it with CSS such as this (copy and paste to Appearance > Customize > Additional CSS):
Screenshot of what this will look like: https://ibb.co/rFKsFFj
Dismiss button:
.cc-btn.cc-dismiss:before {
font-family: FontAwesome;
font-size: 16px;
display: block;
content: '\f0e3';
}
Preferences & save preferences:
.cc-btn.cc-save.cc-show-settings:before {
font-family: FontAwesome;
font-size: 16px;
display: block;
content: '\f0e3';
}
For accept all, you can use the .cc-btn.cc-save.cc-accept-all:before
with the same CSS as in the previous buttons. You can change the icon by swapping the the value of the “content” property with your desired FA icon.
Just let me know if you need anything specific.
Kind regards,
Jarno