I\'m trying to accomplish a layout similar to this one: http://dribbble.com/shots/829195-Slate/attachments/86422
My project uses Twitter Bootstrap with responsive desig
Just create another class and add along with the bootstrap container class. You can also use container-fluid though.
container
container-fluid
....
The CSS part is pretty simple
* { margin: 0; padding: 0; } .full-width { width: 100%; min-width: 100%; max-width: 100%; }
Hope this helps, Thanks!