Hello,
Thanks for your Patience!
Can you please let us know which Parallax Image are you looking to scale?
Additionally, the Background Image is resized according to the size of the available area for the best fit. You may consider using a different image for responsive devices based on your Image requirements as it may work best in this case. Example:
[ch_pre type="css"].device-xl .parallax { background-image: url('image.jpg') !important; }
.device-lg .parallax { background-image: url('image.jpg') !important; }
.device-md .parallax { background-image: url('image.jpg') !important; }
.device-sm .parallax { background-image: url('image.jpg') !important; }
.device-xs .parallax { background-image: url('image.jpg') !important; }[/ch_pre]
Additionally, you can also consider using a different background-position CSS Property like center center for different devices as mentioned above.
This will definitely work fine. The Responsive Classes are as follows:
.device-xl – Class for Large Devices >=1200px
.device-lg – Class for Medium Devices >=992px to 1199px
.device-md – Class for Tablets
.device-sm – Class for Landscape Mobiles or Phablets.
.device-xs – Class for Portrait Mobiles
You can use the above code for other Elements as well in the Slider.
Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.