Is it possible to display the images in slideshow mode on the mobile view (smartphone)?
Images in slideshow mobile view
- Edited
Hi meisterix,
If you want to display the image on the mobile view, you can add the following CSS to the Backend > Site template Styles > ja_artsy - Default > Tools > Custom CSS
@media (max-width: 575.98px) {
.acm-slideshow.acm-slideshow .background {
height: 100%;
left: 0;
width: 100%;
z-index: 0;
}
}
And open the /templates/ja_artsy/acm/slideshow/tmpl/style-owl.php file, line 39.
Replace this:
$bgSlide = 'style="background-image: url('.$helper->get('data.image', $i).');"';
With this code:
$bgSlide = 'style="background: url('.$helper->get('data.image', $i).') center center!important;"';
Warm thanks, excellent job.
saguaros locked the discussion.