Reputation:
So here's a demo of my page. And there is the black bordering around it. I want to have the images span all the way out like this. I've tried messing with the margins and padding but nothing helped. Any ideas?
Upvotes: 0
Views: 54
Reputation: 25159
Margin of 10px on wrap, changed it to 0:
.wrap {
overflow: hidden;
margin: 0
}
Upvotes: 0