4

I'm curious if anyone out there has ever converted the skeleton grid system to have a wider maximum width. 960px is a bit small these days and I'm hoping to get it closer to 1100px.

If anyone has done this before or has any tips for getting started with the change, that would be amazing!

nickff
  • 268
  • 11
  • 23
  • Have you seen this [GetSkeleton1200 Github repo](https://github.com/theresponsiveness/GetSkeleton1200)? It's 1200 pixels wide but you will probably find some information on how they made it. And maybe 1200 pixels is even better for your needs? – Vadiem Janssens Dec 28 '12 at 13:10

3 Answers3

4

In the skeleton.css file, under the Grid section change

.container {
    max-width: 960px;
}

to

.container {
    max-width: 1200px;
}

or whatever size you prefer. This is the simplest solution and worked for my situation.

0

Two options:

  • 1200px (Nicolas Poliquin, last updated May 2013)
  • 1280px (Ian Yates, June 2012, also includes fluid option with no nesting)

They both simply extend the bog standard 960 grid with another set of CSS for the larger browser size.

Personally I might go with 1200 as it shares the same factors as 960 and satisfies my OCD :)

Here's some food for thought on fluid layouts.

Community
  • 1
  • 1
Dunc
  • 18,404
  • 6
  • 86
  • 103
-1

There is a sass version that allows you to choose the container width, number of columns, break points and columns margin. https://github.com/lazerwalker/Skeleton-SASS/

Lynnais
  • 189
  • 1
  • 3