Hi,
You can try the following
At Edit code find the section where your multicolumn layout is defined and add html code
Example of html code
Text for Image 1
Text for Image 2
Example of CSS code for styling
.hero-ingredient .multicolumn {
display: flex;
}
.hero-ingredient .column {
position: relative;
margin: 10px;
}
.hero-ingredient .column img {
display: block;
width: 100%;
height: auto;
}
.hero-ingredient .text-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
opacity: 0;
transition: opacity 0.3s ease;
}
.hero-ingredient .column:hover .text-overlay {
opacity: 1;
}
Example for Javascript for hover effect
function showText(element) {
element.querySelector('.text-overlay').style.opacity = 1;
}
function hideText(element) {
element.querySelector('.text-overlay').style.opacity = 0;
}
If you are not able to do coding by yourself you can go for developer support