Tamás Szelei
Tamás Szelei

Reputation: 23941

Inserting wider banner than div

Our designer created a new banner for a site that's (intentionally) wider than the previous one. Is there some CSS magic that lets me insert it (centered) in place of the old one, without going into cropping and creating new divs on both side?

Thanks

Upvotes: 1

Views: 83

Answers (1)

nickf
nickf

Reputation: 546065

Use negative margins:

.wide-banner {
    margin-left: -50px;
}

You may need to use negative right-margins too, depending on the other content in your page.

Upvotes: 2

Related Questions