Dek Dek
Dek Dek

Reputation: 101

make my theme /site max width of 960 instead of current 1170

Hi I have a site that was built with a wordpress tempalte called celistino just want to ask how would I achieve that my site max-width would be 960 regardless of the resolution of the computer / monitor we are using. The current theme was http://demo.yithemes.com/celestino/ and it's made on max-width bootstrap 1170 grid, I would want to make it 960 maxwidth.

Upon looking it is supporting 1170px responsive layout, we need to achieved the it would only be 960 rather than its standard 1170. Looking forward for any response Thanks in Advance

Thanks

Upvotes: 0

Views: 1546

Answers (1)

Jamir Khan
Jamir Khan

Reputation: 397

You have to customize css3 media-queries in bootstrap-responsive.css. It will work fine. like following code:

@media (min-width: 1200px) {

  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 960px;
  }
}

Upvotes: 2

Related Questions