Reputation: 683
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
Upvotes: 0
Views: 701
Reputation: 1316
You can use media query and overwrite margins for small screens only.
@media (max-width: 600px) {
.image-container {
margin: 0;
}
}
Upvotes: 1