views:

27

answers:

1

Hi, i want to start the design of a website. I know i will need to:

  • think of a general layout
  • design banner/footer
  • choose colors and font
  • make sure everything is well positionned
  • test the site with other browsers
  • ...

the problem is i don't know what is the good order to proceed in a efficient way. Should i design things from the general to the more precise levels? If anybody has a general methodology, a way to organize themeselves for design, it would be greatly appreciated.

+1  A: 

I like my way of doing things:

  1. Photoshop (or other image editor) to create a visual design im happy with. When I'm done with most of it, proceed to 2. This includes at least basic shapes, colors, fonts, positions and sizes. It might also contain example content with proper visual styling.
  2. Write very basic markup: A header element, a content area, basic navigation, footer, sidebars etc.
  3. Write basic CSS and apply the most general images from the Photoshop file (for Faux columns or other "big things").
  4. Write more markup: Add more detail. Add example content to see how every type of element you need will look.
  5. (If applicable) Again, enter your image editor and get more detail imagery.
  6. Write more CSS - style what you wrote in 4. and what you pulled out of your image file in 5.
  7. Iterate through 4-6 until you're done.

After the layout and visual design is more or less done, start integrating your CMS, Blog Engine or whatever you might want behind it all.

This works pretty well for me. I might not always finish all the details in Photoshop before I continue to write markup or CSS, but generally this is what I do. My recommendation is to start at the general level, and move to more detail as you go.

You might have ideas about how details in your page look. If so, create them early in full detail. Otherwise you'll just forget it. Then build more general things around it, and continue as you normally would.

Arve Systad