Hello,
Yes, you can add the background color (solid and transparent color) in the module parameters. Under the Module Style tab, you have the "Text Box Background Color" parameter (color in RGB format) and "Text Box Transparency" (decimal value between 0 and 1).
If you want to add a background image, this must be done via CSS, for example:
Code:
.hot_swipe_carousel_slides .contents {
background-image: url(../images/myimage.jpg);
}
or if you want to add it to the heading only (as in the Paradise template):
Code:
.gallery-cell h2 {
background: url(../images/myimage.jpg) no-repeat;
}
Regards,
Milos