Yes, you can replace the button text with an image. There are two different options:
1. Using Emojis
If the image you need is already available as a standard Emoji, then you can change the button text to an image by simply including the appropriate code. Examples below.
- ❌ : ❌, Cross mark
- ✔ : ✔, Check Box
Emoji Reference List
2. Replace the button text with an image using CSS.
A second option is to hide the button text by making it transparent and replacing it with a background image using CSS. The steps are below.
- Add a CSS class to the button.
- Add custom CSS to hide the button text and add a background image.
An example is provided on the demo site. Image Button Sample
Assuming that you set a CSS class of imageButton
the custom CSS required would be as follows.
button.imageButton {
color: transparent !important;
background-image: url(../Images/feedback.png) !important;
background-repeat: no-repeat !important;
}
For more details on adding custom CSS see: Custom CSS