Hi All.
Just wondering how to make images in layer slider resize with the page percentage wise?
Hi haydenkirk,
Could you provide us with a link to the site in question so that we can take a closer look please? Please try to be a bit more specific to what the problem is as well.
Best regards,
Rikard
Sure, see attached
Hi,
Thanks for the link though it seems to not be loading on my end, it might something temporary though. If you want greater control of the slider you might have to add another one to show only for mobile screens and with images better adapted to those sizes. You can use CSS similar to the following to hide/show the correct section:
@media only screen and (min-width: 768px) {
#section-desktop {
display:block !important;
}
#section-phone {
display:none !important;
}
}
@media only screen and (max-width: 767px) {
#section-desktop {
display:none !important;
}
#section-phone {
display:block !important;
}
}
Regards,
Rikard
Sorry, added the correct link below