Louis93
Louis93

Reputation: 3921

Unslider CSS: Images are not contained on the page?

The live site is on this website, I was not able to reproduce on a Fiddle, and am trying to still make one.

However, notice that on the Unslider, on the left corner the images leak into one another, and I am unsure how to curb this behaviour.

Any input would be great.

Upvotes: 0

Views: 48

Answers (1)

Baerkins
Baerkins

Reputation: 4570

In your css change the padding on the parent <ul> to 0.

.banner ul {
  list-style: none;
  padding: 0;
  margin:0;
}

Upvotes: 1

Related Questions