Solved
Forum Discussion
IsaacBlanco
01-17-2024Cloud Apps
Hey amritbhgt , while reading the Blox documentation, it appears that there is no specific property to set up a tooltip text for an image. However, you can address this by adding an ID to the image within your Blox widget. Then, include a custom script in the widget. Inside that script, use the "ready" event of the widget, and with a bit of JavaScript, you can add the following:
const myImage = document.getElementById('natureImage');
if (myImage) {
myImage.title = "Beautiful Nature";
}