SlideShare a Scribd company logo
Using Grid-based Web Design to Optimize Content Authoring and PresentationMatt Gipson and Charles MoadIndianapolis Museum of Art, USAMW2011 Mini-WorkshopPhiladelphia, PAApril 9th, 2011
Why This Talk?
A Common Language
What We Will CoverHistoryBenefits forDesignersDevelopersContent AuthorsCase StudyLooking Ahead
History of Grid-Based DesignEmil RuderSwiss typographer and graphic designer, who with Armin Hofmann helped to found a graphic style known as the Swiss Style.The Swiss Style was defined by the use of sans-serif typefaces, and employed a page grid for structure, producing asymmetrical layouts.
History of Grid-Based DesignJosef Müller-BrockmannGrid Systems – The first detailed publication to show how the grid is constructed, applied and learned.
History: Josef Müller-BrockmannEarly Josef Müller-Brockmann Poster Designshttp://www.flickr.com/photos/blankaposters/sets/72157605199393277/
History: Josef Müller-BrockmannEarly Josef Müller-Brockmann Poster Designshttp://www.flickr.com/photos/blankaposters/sets/72157605199393277/
Benefits for DesignersA grid framework automatically defines the number of, padding, and margin of columns.Clear and logical pattern which helps organize a wide range of dynamic content scenarios.This alleviates micro-managing content  level design with a defined structure for organizing content.
Benefits for DesignersDramatically cut the time devoted to creating CSS - style sheets to define.
Benefits for DesignersThe grid allows designers to spend more time on style, less on math &coding.
Benefits for DesignersThe grid also provides a template that can easily be replicated, customized, and rapidly implemented.
Grid FallaciesSome designers avoid the use of a grid-systembecause they believe using it will limit their design options.Designers worry that a grid will force creativity into a rigid structure leaving little room for unique style.
Benefits for Designers - TricksUse negative margins to pull elements out of the grid boundaries.Abandon the grid inside or outside content areas.
Benefits for Designers - TricksUse background Images that bleed outside of the boundaries of the grid.Wrap grid divs with container divs which can span the entire page for example.
Benefits for Designers - Examples Unique examples of grid design Notice the generous use of white space.Benefits for Designers - Examples In the example above the grid is abandoned in the main content area as well where they have embedded a blog.Note the grid can be abandoned within the interface such as seen in the slideshow feature.
Benefits for Designers - Examples Note the scale of the site logo and the intentional offset from the grid.
Benefits for Designers - Examples Note the use of a large scale image and it’s placement fitting it to the grid.Also note the products centered in blocks.
Benefits for Designers - Examples Note the use of a liquid header background image that spans the whole page behind the grid. This can be achieved using a wrapping div.
Benefits for Designers - Examples Note the use of a large header background image and how it is pulled out of the grid on the left hand side.
Benefits for Software DevelopersA clear set of CSS rules to follow
Under the Hood<div class=“grid_12”>	<div class=“grid_6alpha” />	<div class=“grid_3” />	<div class=“grid_3omega” /></div>grid_12grid_6alphagrid_3grid_3omega
Benefits for Software DevelopersTools are easier to build.Predetermine image/content sizes; layouts
Benefits for Software Developers5 developers vs. 1 designer(How’s that work?)
Benefits for Content AuthorsEasy to understand concept
Benefits for Content AuthorsIndirectly enforces consistency
Benefits for Content AuthorsEnables rich layouts
Benefits for Content AuthorsSimple tools
General BenefitsWorks well with new-age devices
IMAmuseum.org: A Case Study
MW2011 Grid-based Web Design presentation
IMA: All CSS Enabled
IMA: All Except 960.css
IMA: Just 960.css
IMA: All CSS Enabled
Image Specs Before the GridOld imamuseum.org style-guide – A list of image names and sizes.
Image Specs Before the GridOld imamuseum.org style-guide – A list of image names and sizes.
WIKI MarkupBefore<div class="bodycopy first">	<div class="copyleft">		<h3>Hours</h3>	</div>	<div class="copyright">		<p><imgsrc="/images/size-g/open.png"/>		The museum is open from 9am to 5pm.</p>	</div></div>After=== Hours[img:open.png|width=1]The museum is open from 9am to 5pm.Stein, R. and E. Bachta. "Breaking the Bottleneck: Using Pseudo-Wikis to Enable Rich Web Authoring for Non-Technical Staff Members". MW2010 http://www.archimuse.com/mw2010/papers/stein-bachta/stein-bachta.html
Authoring HelpersFill in the blanks
Reference guideAuthoring Helpers: Images
Authoring Helpers: Flickr Set
Grid Tools for AllThe web is full of grid system frameworks.Several online web apps existGrid calculators, bookmarklets, etc. Several open themes are popping up using a grid system.Push for 960 WordPress base themeDrupalJoomla
Why 960?Most modern monitors support at least 1024 × 768 pixel resolution. 960 is divisible by 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 64, 80, 96, 120, 160, 192, 240, 320 and 480. This makes it a highly flexible base number to work with.
Tools – 960 frameworks960 Grid SystemFluid 960 Grid System960 Gridder
Tools – 960 themesDrupalWordPress 960 Robots
 Omega
 + many more
 960 Blank Canvas
 960wp
 + many moreTools – 960 Grid AlternativesThe Square Grid – 28px baseline-grid. 1 square = 28px.jQuery Masonry978.gs – Another popular framework1140px, 12 column grid. Fluid all the way down to a mobile version.
Tools – 960 alternatives – jQuery Masonry“Whereas floating arranges elements horizontally then vertically, Masonry arranges elements vertically then horizontally along a grid. The result minimizes vertical gaps between elements of varying height, like a mason fitting stones in a wall.”
Tools – 960 alternatives – cssgrid.netMobile viewDesktop monitor view“Scrap 1024! Design once at 1140 for 1280, and with very little extra work, it will adapt itself to work on just about any monitor, even mobile.”
Tools – 960 alts – Fluid 960 Grid System775px wide1840 px wideThe Fluid 960 Grid System templates have been built upon the work of Nathan Smith and his 960 Grid System using effects from the MooTools andjQuery JavaScript libraries.
Tools – 960 alternatives – Roll Your OwnTiny Fluid GridThe 1Kb CSS GridA fresh take on the CSS grid. (loosely based on Nathan Smith’s 960 Grid System). Its mission is to be lightweight.A lightweight customizable tool for building base
Tools – 960 alternatives – Roll Your Own.grid_1 { width:60px; } .grid_2 { width:140px; } .grid_3 { width:220px; } .grid_4 { width:300px; } .grid_5 { width:380px; } .grid_6 { width:460px; } .grid_7 { width:540px; } .grid_8 { width:620px; } .grid_9 { width:700px; } .grid_10 { width:780px; } .grid_11 { width:860px; } .grid_12 { width:940px; } .column { float: left; margin: 0 10px; overflow: hidden; display: inline; } .row { width: 960px; margin: 0 auto; overflow: hidden; }The 1Kb CSS GridLightweight base cssstylesheet for the grid structure. Leaves it up to the designer to define a ‘reset’ stylesheet and style.
Sustainability of GridsIn the same way that grid principles transfer from print to web, they stand a much better chance of remaining relevant on new device.Open-source content management system adoption of grids will further broaden their reach.

More Related Content

MW2011 Grid-based Web Design presentation

  • 1. Using Grid-based Web Design to Optimize Content Authoring and PresentationMatt Gipson and Charles MoadIndianapolis Museum of Art, USAMW2011 Mini-WorkshopPhiladelphia, PAApril 9th, 2011
  • 4. What We Will CoverHistoryBenefits forDesignersDevelopersContent AuthorsCase StudyLooking Ahead
  • 5. History of Grid-Based DesignEmil RuderSwiss typographer and graphic designer, who with Armin Hofmann helped to found a graphic style known as the Swiss Style.The Swiss Style was defined by the use of sans-serif typefaces, and employed a page grid for structure, producing asymmetrical layouts.
  • 6. History of Grid-Based DesignJosef Müller-BrockmannGrid Systems – The first detailed publication to show how the grid is constructed, applied and learned.
  • 7. History: Josef Müller-BrockmannEarly Josef Müller-Brockmann Poster Designshttp://www.flickr.com/photos/blankaposters/sets/72157605199393277/
  • 8. History: Josef Müller-BrockmannEarly Josef Müller-Brockmann Poster Designshttp://www.flickr.com/photos/blankaposters/sets/72157605199393277/
  • 9. Benefits for DesignersA grid framework automatically defines the number of, padding, and margin of columns.Clear and logical pattern which helps organize a wide range of dynamic content scenarios.This alleviates micro-managing content level design with a defined structure for organizing content.
  • 10. Benefits for DesignersDramatically cut the time devoted to creating CSS - style sheets to define.
  • 11. Benefits for DesignersThe grid allows designers to spend more time on style, less on math &coding.
  • 12. Benefits for DesignersThe grid also provides a template that can easily be replicated, customized, and rapidly implemented.
  • 13. Grid FallaciesSome designers avoid the use of a grid-systembecause they believe using it will limit their design options.Designers worry that a grid will force creativity into a rigid structure leaving little room for unique style.
  • 14. Benefits for Designers - TricksUse negative margins to pull elements out of the grid boundaries.Abandon the grid inside or outside content areas.
  • 15. Benefits for Designers - TricksUse background Images that bleed outside of the boundaries of the grid.Wrap grid divs with container divs which can span the entire page for example.
  • 16. Benefits for Designers - Examples Unique examples of grid design Notice the generous use of white space.Benefits for Designers - Examples In the example above the grid is abandoned in the main content area as well where they have embedded a blog.Note the grid can be abandoned within the interface such as seen in the slideshow feature.
  • 17. Benefits for Designers - Examples Note the scale of the site logo and the intentional offset from the grid.
  • 18. Benefits for Designers - Examples Note the use of a large scale image and it’s placement fitting it to the grid.Also note the products centered in blocks.
  • 19. Benefits for Designers - Examples Note the use of a liquid header background image that spans the whole page behind the grid. This can be achieved using a wrapping div.
  • 20. Benefits for Designers - Examples Note the use of a large header background image and how it is pulled out of the grid on the left hand side.
  • 21. Benefits for Software DevelopersA clear set of CSS rules to follow
  • 22. Under the Hood<div class=“grid_12”> <div class=“grid_6alpha” /> <div class=“grid_3” /> <div class=“grid_3omega” /></div>grid_12grid_6alphagrid_3grid_3omega
  • 23. Benefits for Software DevelopersTools are easier to build.Predetermine image/content sizes; layouts
  • 24. Benefits for Software Developers5 developers vs. 1 designer(How’s that work?)
  • 25. Benefits for Content AuthorsEasy to understand concept
  • 26. Benefits for Content AuthorsIndirectly enforces consistency
  • 27. Benefits for Content AuthorsEnables rich layouts
  • 28. Benefits for Content AuthorsSimple tools
  • 29. General BenefitsWorks well with new-age devices
  • 32. IMA: All CSS Enabled
  • 33. IMA: All Except 960.css
  • 35. IMA: All CSS Enabled
  • 36. Image Specs Before the GridOld imamuseum.org style-guide – A list of image names and sizes.
  • 37. Image Specs Before the GridOld imamuseum.org style-guide – A list of image names and sizes.
  • 38. WIKI MarkupBefore<div class="bodycopy first"> <div class="copyleft"> <h3>Hours</h3> </div> <div class="copyright"> <p><imgsrc="/images/size-g/open.png"/> The museum is open from 9am to 5pm.</p> </div></div>After=== Hours[img:open.png|width=1]The museum is open from 9am to 5pm.Stein, R. and E. Bachta. "Breaking the Bottleneck: Using Pseudo-Wikis to Enable Rich Web Authoring for Non-Technical Staff Members". MW2010 http://www.archimuse.com/mw2010/papers/stein-bachta/stein-bachta.html
  • 42. Grid Tools for AllThe web is full of grid system frameworks.Several online web apps existGrid calculators, bookmarklets, etc. Several open themes are popping up using a grid system.Push for 960 WordPress base themeDrupalJoomla
  • 43. Why 960?Most modern monitors support at least 1024 × 768 pixel resolution. 960 is divisible by 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 64, 80, 96, 120, 160, 192, 240, 320 and 480. This makes it a highly flexible base number to work with.
  • 44. Tools – 960 frameworks960 Grid SystemFluid 960 Grid System960 Gridder
  • 45. Tools – 960 themesDrupalWordPress 960 Robots
  • 47. + many more
  • 48. 960 Blank Canvas
  • 50. + many moreTools – 960 Grid AlternativesThe Square Grid – 28px baseline-grid. 1 square = 28px.jQuery Masonry978.gs – Another popular framework1140px, 12 column grid. Fluid all the way down to a mobile version.
  • 51. Tools – 960 alternatives – jQuery Masonry“Whereas floating arranges elements horizontally then vertically, Masonry arranges elements vertically then horizontally along a grid. The result minimizes vertical gaps between elements of varying height, like a mason fitting stones in a wall.”
  • 52. Tools – 960 alternatives – cssgrid.netMobile viewDesktop monitor view“Scrap 1024! Design once at 1140 for 1280, and with very little extra work, it will adapt itself to work on just about any monitor, even mobile.”
  • 53. Tools – 960 alts – Fluid 960 Grid System775px wide1840 px wideThe Fluid 960 Grid System templates have been built upon the work of Nathan Smith and his 960 Grid System using effects from the MooTools andjQuery JavaScript libraries.
  • 54. Tools – 960 alternatives – Roll Your OwnTiny Fluid GridThe 1Kb CSS GridA fresh take on the CSS grid. (loosely based on Nathan Smith’s 960 Grid System). Its mission is to be lightweight.A lightweight customizable tool for building base
  • 55. Tools – 960 alternatives – Roll Your Own.grid_1 { width:60px; } .grid_2 { width:140px; } .grid_3 { width:220px; } .grid_4 { width:300px; } .grid_5 { width:380px; } .grid_6 { width:460px; } .grid_7 { width:540px; } .grid_8 { width:620px; } .grid_9 { width:700px; } .grid_10 { width:780px; } .grid_11 { width:860px; } .grid_12 { width:940px; } .column { float: left; margin: 0 10px; overflow: hidden; display: inline; } .row { width: 960px; margin: 0 auto; overflow: hidden; }The 1Kb CSS GridLightweight base cssstylesheet for the grid structure. Leaves it up to the designer to define a ‘reset’ stylesheet and style.
  • 56. Sustainability of GridsIn the same way that grid principles transfer from print to web, they stand a much better chance of remaining relevant on new device.Open-source content management system adoption of grids will further broaden their reach.
  • 57. Sustainability of GridsGrids are an established design tool based on a long history of documented knowledge.Grids are everywhere in our society, and have been for centuries. The Grid is a classic tool that won’t be going away anytime soon.
  • 58. The Future of Grids Watch for this book:A Practical Guide to Designing Grid Systems for the WebBy Mark Boultonmarkboulton.co.uk
  • 59. ThanksMatt Gipson and Charles Moad
  • 60. Indianapolis Museum of Art, USAMW2011 Mini-WorkshopPhiladelphia, PAApril 9th, 2011

Editor's Notes

  1. Emil Ruder helped found Swiss Style. This style of design uses san-serif typography and a grid-system for structure.
  2. The grid-system is not a web technology, but a tried and true design technique stemming from typography and print design. It has been around roughly since WW2. It applies very well to web design.
  3. These are a few early examples demonstrating the grid-system in action. These are event posters created by Josef Muller-Brockmann.
  4. More early examples of Josef Muller-Brockmann’s designs. Notice on the left he is clearly utilizing a vertical and horizontal grid. The Beetoven poster is probably one of his most famous pieces. There are some great videos on youtube if you search his name + the term ‘grid’
  5. Starting off with a grid-system with your design, buys the front end designer a lot. Your margins are automatically defined. Figuring out image and content widths becomes a snap.
  6. With a grid-system in place, designers can quickly create prototypes and wireframes. I have created some templates with grid guidelines which gives me a big head start with page layout.
  7. I think of grid-based web design systems as a set of layers. Traditionallyyou might have the layout structure and style all in one cssstylesheet. This is confusing. We will show an example of this in our case study.
  8. Again, prototyping and creating wireframes for designs using a grid dramatically speeds up the process. Charlie will show you some examples in our case study.
  9. These are common arguments we hear against using a grid-system. It boils down to, how you use the grid. There are techniques to alievethese beliefs.
  10. Using negative margins in the style layer can buy you a lot and make your design more unique.Another way to break loose from the grid is to use it sparingly. (as seen in the beethoven poster)
  11. Background images can easily alleviate the rigid structure of a grid.Another technique I’ve employed is to use wrapping divs which span the entire screen for instance.
  12. Now I’ll show several good examples of website utilizing a grid-system. In this first example, at first glance you don’t see a grid. This is due to the generous use of whitespace.
  13. Here is a good example of a website using a grid where they abandon it within blocks of content. The featured content can be unique and it doesn’t clash with the surrounding grid. Also notice how they are using negative margins to pull out the next/prev slideshow buttons.
  14. This is an example of using a large offset background image breaking out of the boundaries of the page grid.
  15. Using large images is another good technique for breaking out of the grid.
  16. Here is an example of wrapping divs thatI talked about earlier. The header background image spans the entire width of the page.
  17. Another good example of using an offset background image to alleviate the grid structure.
  18. For your most common visitors, 960 is perfect
  19. Specify number of columns, gutter percentages/width and the minimu/maximum width.
  20. Grids exist for joomla, drupal, wordpress.