twitter bootstrap - Boostrap CDN with 16-columns instead of 12 -


i want use latest bootstrap cdn, defaults 12 column layout. way customize 16 col layout download , host files yourself?

edit: i'm asking how bootstrap through cdn. use bootstrap cdn https://cdnjs.com/ , works great, except 12-col layout.

there 2 options this.

  1. you override bootstraps grid system own css file.

    <link rel="stylesheet" href="/cdn/path/to/bootstrap.css" /> <link rel="stylesheet" href="/my/path/overide_bootstrap.css" /> 

    this can tedious task , not recommend doing way.

  2. customize bootstrap , use own version

    if go http://getbootstrap.com/customize/ can customize , download customized version of bootstrap. looking located @ http://getbootstrap.com/customize/#grid-system.

once has been downloaded have few options:

  1. serve files own project.
  2. use free cdn service

    there multiple cdn services can use, such cloudflare (https://www.cloudflare.com/features-cdn) or can use cdnjs (https://github.com/cdnjs/cdnjs#adding-a-new-or-updating-an-existing-library)

i hope helps!


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -