0

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

Remco
  • 681
  • 1
  • 6
  • 20

1 Answers1

1

You can use media query and overwrite margins for small screens only.

@media (max-width: 600px) {
  .image-container {
    margin: 0;
  }
}
Sikandar Tariq
  • 1,296
  • 1
  • 13
  • 29