Hello,
Thank You so much for the Kind Words! :)
This is Definitely Possible and can be achieved using the Responsive Classes:
- Add a Custom Class on the Modal Content:
A Simple Example of a Text Modal
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nostrum delectus, tenetur obcaecati porro! Expedita nostrum tempora quia provident perspiciatis inventore, autem eaque, quod explicabo, ipsum, facilis aliquid! Sapiente, possimus quo!
[Close this Modal](#)
- Then use the following CSS Code:
.device-lg .custom-modal-bg { background-image: url(images/bg-desktop.jpg); }
.device-md .custom-modal-bg { background-image: url(images/bg-notebook.jpg); }
.device-sm .custom-modal-bg { background-image: url(images/bg-ipad.jpg); }
.device-xs .custom-modal-bg { background-image: url(images/bg-iphone-landscape.jpg); }
.device-xxs .custom-modal-bg { background-image: url(images/bg-iphone-portrait.jpg); }
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.