An image on a push button?

Yes, using the button’s css property:

background:url(/path/to/file.png);
background-size: cover;

It also possible to set the button’s css to background: transparent; and put an image widget behind it (css z-index can be used to set the widgets’ stacking order if needed).

2 Likes