Remco
Remco

Reputation: 683

Remove container on mobile view

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

Answers (1)

Sikandar Tariq
Sikandar Tariq

Reputation: 1316

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

@media (max-width: 600px) {
  .image-container {
    margin: 0;
  }
}

Upvotes: 1

Related Questions