user3444414
user3444414

Reputation:

Get rid of border on page?

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

Answers (2)

Mike Robinson
Mike Robinson

Reputation: 25159

Margin of 10px on wrap, changed it to 0:

.wrap {
   overflow: hidden;
   margin: 0
}

Upvotes: 0

Adam
Adam

Reputation: 4683

Try getting rid of .wrap{...}, all it does is add a margin.

Upvotes: 1

Related Questions