We have a image carousel in a container. On mobile view we want to remove the container so we have full wide image carousel.
How can we do that?
Thanks
remco
We have a image carousel in a container. On mobile view we want to remove the container so we have full wide image carousel.
How can we do that?
Thanks
remco
You can use media query and overwrite margins for small screens only.
@media (max-width: 600px) {
.image-container {
margin: 0;
}
}