Is there a way to create an overlay div using my HTML markup without adding any additional code?
I want to add a dark overlay with opacity over the image, but I'm limited in what I can use.
background: rgba(0, 0, 0, 0.5);
Here is the current markup:
<div class="fusion-image-wrapper">
<a href"#">
<img src="image-path" >
</a>
</div>
Any suggestions on how to achieve this effect?
Appreciate your help!