I have a few images that overlay each other with transparency. So is there a way to load multiple paths into the image widget? I've tried an array of paths, and even (path|path) with no luck.
There's not, but you can use html and css to do it
<!-- html -->
<div class="overlay"></div>
/* css */
.overlay {
position: absolute;
z-index:1;
width:100%;
height:100%;
background: /* ... */
}
Thankyou, I did end up using this method tho also using a sort of Hacky method with color text and @{widget} since I want the bg to be somewhat dynamic.