Hello,
This is Definitely Possible for the Responsive Devices too! And we would suggest you to use the Responsive Classes for this Purpose. Follow the Steps below:
Add a Custom Class .custom-caption-margin to the .slider-caption Element.
Now, add the following CSS Code using which you can control the Margin on different devices sizes:
.device-lg .custom-caption-margin { margin-top: 100px; }
.device-md .custom-caption-margin { margin-top: 80px; }
.device-sm .custom-caption-margin { margin-top: 60px; }
.device-xs .custom-caption-margin { margin-top: 40px; }
.device-xxs .custom-caption-margin { margin-top: 20px; }
This will Definitely work fine. The Responsive Classes are as follows:
.device-lg – Class for Large Devices >=1200px
.device-md – Class for Medium Devices >=992px to 1199px
.device-sm – Class for Tablets
.device-xs – Class for Landscape Mobiles or Phablets.
.device-xxs – Class for Portrait Mobiles
Let us know if we can help you with anything else or if you find any further issues.