.slideshow {
width: 30%;
margin: 0 auto;
}
@media screen and (max-width: 769px) {
.slideshow {
width: 100%;
}
}
I was able to solve it with this code. Thank you.
.slideshow {
width: 30%;
margin: 0 auto;
}
@media screen and (max-width: 769px) {
.slideshow {
width: 100%;
}
}
I was able to solve it with this code. Thank you.