Archive for May, 2012

Make sure your HTML5 document outline is backwards compatible

This is just a short reminder of something I wrote about in On using h1 for all heading levels in HTML5: make sure your HTML5 document outline is backwards compatible.

The reason is simple. Browsers and assistive technology haven’t implemented the HTML5 outline algorithm yet (the only exception I’m aware of is JAWS, which gets it wrong, as Jason Kiss explains in JAWS, IE and Headings in HTML5).

Read full post

Posted in , .

Copyright © Roger Johansson



Applying Macrotypography For A More Readable Web Page


  

Any application of typography can be divided into two arenas: micro and macro. Understanding the difference between the two is especially useful when crafting a reading experience, because it allows the designer to know when to focus on legibility and when to focus on readability.

This article focuses mostly on a few simple macrotypographic techniques—with a dash of micro—and on how to combine them all to build a more harmonious, adaptable and, most importantly, readable Web page.

First, some definitions. Microtypography has to do with the details; setting the right glyph, getting the appropriate kerning and tracking, and making stylistic choices such as when to use small-caps. Micro techniques have received a lot of attention recently, as browser makers adopt new CSS attributes that allow for finer control over Web type. Microtypography deals mainly with legibility and can be thought of as the design of letters and words.

Macrotypography focuses on how type is arranged on the page. Most macro techniques have been achievable through CSS for quite some time, but because our understanding of the Web page is changing, the way we use these techniques must adapt. Macrotypography deals mainly with readability and can be thought of as the design of paragraphs and the page.

The Importance Of Readability

For the designer’s purpose, readability refers to the ease with which a body of text can be consumed, and it correlates closely to the reader’s eye strain. This should not be confused with legibility, which refers to the degree to which individual glyphs in text can be discerned. The techniques for creating a great reading experience are complementary to those for creating a great user experience (UX), and vice versa. They also both share the same symptoms of failure. Poor readability on a website can lead to confusion, frustration and ultimately abandonment, while a great reading experience is invisible, supportive and engaging.

As with UX design, every website design would benefit from some measure of concern for readability. For example, text-heavy websites—such as blogs, newspapers and magazines—should uphold readability as a priority, while websites for events and e-commerce might just need to tweak line heights and font sizes. Whatever level of importance you place on readability, you should undertake a continual process of refinement towards an effortless reading experience.

Techniques For Improving Readability

The foundation of great reading experiences on the Web lies in the study of book design. After all, books are where readable typography was honed. Personally, I hold The Form of the Book by Jan Tschichold as the ultimate resource for good taste in book design, and I am certainly not alone.

Many of the techniques we’ll cover here have been adapted for the Web page from lessons introduced in this book. Sadly, the book has been out of print for about 20 years (at least in the US), and a copy can cost around $150 on Amazon’s marketplace. I have created a digest of it, but if you want to read the full text, you could always try your local library or university (which is how I finally got my hands on it).

Now, let’s look at the various macro techniques—and a few micro techniques—to make your website’s content more readable. I have chosen an article that is typical of the kinds of reading experiences users encounter. I have removed the header and some branding elements, but it remains mostly as I found it.

In our example, important content (navigation, advertising, related links) lies on either side of the reading area. For optimum readability, a less obtrusive placement of these elements would be best, but this is not always possible. We will, therefore, not rearrange the layout, but work within it. Here is what we are starting with:

As we learn about each technique, we will apply it to our example. But keep in mind that this exercise is to improve only the reading experience, not the overall design.

Command Your Margins

Margins give the eye room to maneuver. They provide a buffer between the main content and ancillary elements—such as related links and ads—allowing the reader to focus on the text. Beyond this purely functional purpose, margins can also bring deeper harmony to the layout.

Margins comprise negative space; they afford the designer an opportunity to build a relationship between a body of text (the figure) and its surroundings (the ground). As Tschichold tells us, “Harmony between page size and the type area is achieved when both have the same proportions.� Now, the proportions of a page in a book are much different than those of most digital displays (especially ones in landscape orientation), so to adapt this concept to the Web, we can work towards a harmony between our text and its immediate visual container.

In Practice

On our example page, the margins are not very generous. Also, the main content is crammed in between two very loud columns. First, we can add more space to the right of the text, giving the reader room to go from the end of one line to the beginning of the next without being distracted by the secondary content on the right. And adding more margin to the left of the text allows the reader to easily find the start of the next line and to scan the article for topics they are interested in.

Margins can be set intuitively by increasing the amount on each side until the content feels comfortable. Applying this to our article element is easily achieved by adding padding in our CSS (rather than margin, in this case). For now, we will just double the padding on the left and right:

article {
   padding-left: 20px;
   padding-right: 40px;
}

In our adjustment of the margins, we can create still greater harmony between the copy and its surroundings, but first we must visualize an invisible container around the content. This will be our “page� with which to build harmony in the reading area:

The way to create harmonious proportion between text and its container is to give them the same shape. The content should have the same proportions—only smaller—as its containing element. Tschichold surveyed a mountain of book proportions and concluded that the most harmonious proportions for margins are roughly 2:3:4:6 (top:right:bottom:left) for the left-facing page (recto) of a book. Given that we do not have facing pages on the Web, we can make the margins symmetrical and adjust the ratio to 2:3:4:3 by shaving off a bit of the left margin. Web text does not need as much side margins as book text because Web pages do not need to accommodate the reader’s thumbs.

Though they may seem the obvious unit of measure, percentages for padding will only measure in relation to the width of our article element’s container, skewing our top, bottom and side proportions to an inappropriate degree. Therefore it’s best work with padding in ems or pixels until the reading area has the same proportions as its container. To keep things simple, let’s start with 2em for the top padding in our example. After applying our adjusted ratio from above, our article’s padding can be written as 2em 3em 4em 3em or 2em 3em 4em in CSS shorthand. Given the fluid nature of content on the Web, this is just an approximation of Tschichold’s proportions. For a typical body of text on the web—which is taller than it is wide—the margin should be generally less on top, even on the sides, and most at the bottom:

article {
   padding: 2em 3em 4em;
}

We can also move the lead image to the right. This allows the body copy to hold its shape better and allows for even easier scanning of the article. We can break this principle to draw attention to images and figures, of course, but for our example the image is too distracting on the left when placed early in the article.

If we want, we can bring the text forward on the z axis, putting even more focus on our copy and de-emphasizing the ancillary content by creating a visible container for our text. This is a tactic we can easily use in Web design that books do not need:

body {
   background: #fcfcfc;
}

article {
   background: #fff;
   border: 1px solid #eee;
   padding: 2em 3em 4em;
}

Our page already feels more balanced and less intimidating, but we can use more techniques in the body of the text to further enhance readability.

Choose Readable Fonts

Font selection is a micro concern, but it has a tremendous impact on the macro appearance. In Detail in Typography, Jost Hochuli best outlines this interdependence: “In typography, details can never be considered in isolation.�

The font for the body copy should be chosen for its on-screen readability, before any concern for style. The headings and pull quotes are perfect opportunities to flex your typographic creativity, but leave the long runs of copy to dependably readable workhorses such as Georgia, Arial and Myriad, which were all designed for optimal reading on a back-lit screen.

Fonts that are more readable on digital screens typically exhibit the following attributes:

  • Tall x-height;
  • Slightly wider em width, but not condensed or extended;
  • Mostly devoid of style;
  • Serifs for larger type, and sans-serif for smaller type.

All of these rules have exceptions, but they should be your guiding principles when choosing a font for the body copy. Here are some font stacks that I find give some flavor of style, provide appropriate fallbacks and are all highly readable:

In Practice

Let’s apply Myriad Pro to the body text on our page:

article {
   background: #fff;
   border: 1px solid #eee;
   font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
   padding: 2em 3em 4em;
}

Keep It Measured

In setting any block of text, we must consider its measure. Measure is defined by either the number of characters per line or the number of words. I use words because they are easier to count, and I try to follow Tshichold’s suggestion of 8 to 12 words per line. If you base your measure on characters, then 45 to 85 characters per line is ideal. Once the margins and widths have been set, proper measure can be achieved through two attributes in the CSS, font-size and word-spacing.

When deciding on a size, strike a balance between making the font small enough that the reader is not too distracted when jumping to the next line, but big enough that they do not have to lean in to read the text on the screen. For most fonts, 16 pixels works well. Other factors might lead you to making it larger or smaller, but 16 pixels is a great place to begin. As for word spacing, most browsers do a decent job of setting this for you, but if you are having trouble getting an appropriate measure, cheating this attribute slightly either way can be handy.

In Practice

On our page, let’s add a 16-pixel font size, and cheat the word spacing in just a tiny bit to achieve a proper measure (word-spacing is supported in all major browsers). You might instead want to use ems or rems here so that the layout remains flexible whatever the font size set by the user as their default.

Until we set a new line height, our page will look like a jumbled mess, so let’s just look at the code at this point:

article {
   background: #fff;
   border: 1px solid #eee;
   font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
   font-size: 16px;
   padding: 2em 3em 4em;
   word-spacing: -0.05em;
}

Set An Appropriate Line Height

Once the font size is set, you can determine the appropriate line height. On the Web, we work in terms of line height, which by default is an equal amount of space above and below text on a line. Not to be confused with leading in print design, which generally refers to the amount of space below a line of text. The governing rule for line height (and leading) is, the longer the line length, the taller the line height should be. And vice versa: the shorter the line length, the shorter the line height.

Find an appropriate line height by first determining the point at which the ascenders and descenders of the lines of text do not touch, yet the lines are close enough that the reader requires no effort to find the next line. Then adjust until the height feels balanced with the line length. Some may leave the line-height attribute to the browser’s default, while some may set a global line-height on the body element. Both approaches make sense because the line height would then stay proportional to the element’s font size; but both also assume that the line width of the content will stay consistent, which could lead to situations that violate our governing rule.

In Practice

Let’s add a line height of 1.3 ems to our example, using ems so that our line height stays proportional to the font size, and see how the font size and line height work together:

article {
   background: #fff;
   border: 1px solid #eee;
   font-family: "Myriad Pro", Arial, Helvetica, sans-serif;
   font-size: 16px;
   line-height: 1.3em;
   padding: 2em 3em 4em;
   word-spacing: -0.05em;
}

It is important to note that readable line heights can be especially tricky to keep consistent in responsive layouts, as line lengths will vary based on device widths. To solve this issue, Tim Brown has proposed an idea he calls “Molten Leading,� which would allow line heights to increase proportionally based on the screen width. His post links through to a couple of Javascript implementations of this idea. In lieu of Javascript intervention, you can also manually find the screen widths at which the line heights become uncomfortable, use a media query to target that width, and set a more readable line-height in the CSS.

Find The Proper Paragraph Styles

We need to figure out which paragraph style best fits the content. Jon Tan has done a fantastic job of outlining various styles and how to craft them with CSS. The appropriate style for a piece of content varies based on the flavor of the content and the rhythm of the paragraphs. I have written about my preference for using indents, rather than line breaks, when setting long-form text. This helps to keep the flow between ideas, but it can be distracting when the paragraphs are short or the line length is long. Deciding what constitutes the perfect paragraph for your content is up to you.

In Practice

Our page is a news article, where the flow between paragraphs is dictated more by chronology than by ideas, so line breaks are still appropriate. We could easily apply indents, if appropriate, to the paragraphs with one simple CSS rule:

article p + p {
   text-indent: 2em;
}

We specify p + p rather than just applying the rule to all p tags because we want to indent only those paragraphs that follow other paragraphs. Ones that follow headings, images and so on should not be indented.

Instead of indenting, though, we just want to shrink the line breaks a bit so that each paragraph is not so disconnected from the last. For our page, let’s use half of the line height:

article p {
   margin-bottom: 0.5em;
}

Balance The Text’s Contrast

One final consideration for content is text color. Contrast is a major contributing factor in eye strain and so greatly impacts readability. Low contrast between text and background causes more squinting and blinking among readers, a sure sign of strain. Black on yellow has the highest contrast, but we have been conditioned to view this as a sign of warning or alarm, thus increasing anxiety among readers. Black on white is high in contrast, too, but too harsh for extended reading on back-lit screens. For long-form text, I have found dark-gray text (around #333) on a white or light-gray background (no darker than #EEE) to be optimal. This is a gross simplification of color theory to suit the purposes of this article. To learn more about color, Mark Boulton has written a great primer on color theory for the Web; you can also find many great examples in Smashing Magazine’s series on color.

In Practice

Our article already has a white background (serving as a boundary for the margins), set against a wider light-gray background. We should probably keep the white, and lessen the darkness of the text to #444. We can then use #000 on the headings to give them slightly more emphasis:

article p {
   margin-bottom: 0.5em;
   color: #444;
}

article h1 {
   color: #000;
}

The Result

We now have a much more readable page that invites users into the content. We could employ many more techniques across the entire website, but we have focused here on the main content block. has written a great overview of these techniques and more for Smashing Magazine, which will give you a deeper understanding of everything covered here.

With a clean reading experience, people will better absorb the ideas being presented and will undoubtedly come back for more—that is, if your content is worth reading… but I can’t help you there.

Excellent Reading Experiences On The Web

Readability is not a new concept, of course. If you are just discovering what makes for a good reading experience, then congratulations, and welcome to all the discomforts of recognizing cramped and neglected type on the Web. It’s not all pain, though. Plenty of well-considered blocks of content are to be found. Let’s look at a few great ones and a couple that could be great with slight tweaks.

Please note: In the interest of showcasing only the reading experience, we have cropped each page to a scrolled view of the main content.

24 Ways
The reading experience on 24 Ways is quite nice. The text contrast is well balanced, the measure is not too long, and the font size is generous. At all responsive breakpoints, the design is a perfect example of a page with sufficient and balanced margins around the main reading area.

Desktop view

CNN
Long-form articles on CNN are good examples of how readability can work well on news websites. The layout does not show a visible container for the article—which in this case might have been distracting on a page already laden with so much content—but the margins are generous. Also, the line breaks for the paragraph styles are completely appropriate, because most online news stories are collated and updated from many sources and are not linear ideas. The font size (currently 14 pixels for the body copy) could stand to be a bit bigger, though.

Contents
The tablet view of Contents magazine is a wonderful experience all around. The measure is perfect, the line height and font size play together nicely, and the paragraph styles are perfectly suited to the content. The measure does get too long at desktop sizes, but with all of the other factors working so well, the effect on overall readability is negligible.

Tablet view

Desktop view

Elliot Jay Stocks
Elliot does quite a few things well on his website. The measure is right, the font (Skolar) is very readable and set at a comfortable size (16 pixels), and the line height is just tall enough to accommodate the link style. Generous margins create harmony between the main content and its container, while the side margins are uneven, making the page look like the recto of a book and giving the layout a unique character.

Esquire
Most articles on Esquire are great, but the reading experience is merely good. The margins are ample, the font is readable, and the contrast is high. All of these go a long way towards establishing good readability, but a few simple tweaks would make it great. Increasing the right padding would shorten the measure, which is a bit too long as it is. The font size could also be increased by a couple of pixels. And given that most Esquire articles are a linear progression of ideas, I would suggest paragraph indents rather than line breaks.

The Guardian
The design team over at The Guardian pays attention to crafting great all-around experiences. Readability is no exception. Measure, contrast and paragraph styles all work together to create a focused and comfortable reading experience in the midst of what could be an overwhelming amount of content.

A Working Library
A Working Library is one of the best reading experiences on the Web. Every aspect of readability discussed in this article has been well considered and executed. The harmony between text and its container is pitch perfect.

Refining Towards The Ideal

With the examples above, we have tried to show how readability can excel in a few different digital environments: blogs, news websites and online magazines. Some of these website do not have many of the constraints (such as ads and related content) of more commercial websites, so it could be argued that these designs exist in a vacuum, without pragmatic application or real-world pressures. We need these shining examples, though, to help us find the ideal reading experience for each project; and once we know that ideal, we should do our best to reach it.

In a recent talk on “What Is Reading For?� the famous typographer and poet Robert Bringhurst stated, “Books are and have to be utilitarian objects. They have to be used.� The same could be said of Web pages. Ideal reading experiences create better user experiences. Our job as designers is to refine the aesthetic qualities of the Web’s content in order to speed the process of consumption, thereby facilitating deeper understanding. Tired eyes all over the Web are counting on us.

(al)


© Nathan Ford for Smashing Magazine, 2012.


Turn It Up: Musically Inspired Logo Design


  

Many artists, whether digital or traditional find much inspiration in music. It often serves as a great mind opener for large amounts of creativity and style to be ushered in. Some artists believe music helps them to see shapes and colors, and often offers up feelings and emotions to help them execute their work more proficiently. Which is why it’s best to try to listen to music that you know will get your mind going.

Sometimes this inspiration becomes the work. Music based design projects can be extremely fun and creative projects. Whether you are dealing with a musical artist or a music studio, the possibilities can really be endless. Music is such a big, ever-evolving entity that sometimes it requires that extra bit of design work to take it to the next level.

Today, we are sharing some of the best, creative and wonderfully designed logos that are musically inspired. We hope the next time you are on a music based design project, these logos help to inspire you to create something great. If not, turn on some even greater music!

Music Inspired Logos

Go Music
It’s easy to want to refer to ‘stop’ and ‘go’ when you have a company named ‘Go Music’, but what the designer did here was extremely clever and well executed.

MyDJSpace
Simplicity is often key when designing a really good and strong logo–sometimes keeping your logo close to home really makes sense. Here, we have two iconic things associated with DJ’s, the vinyl record and headphones.

Zuim
This logo was created for a podcast that dove heavily into music by offerring critiques and holding open discussions with their audience. The emphasis here was obviously on the music, as the staff and notes are extremely important here.

Radio
Another simple, ‘makes sense’ logo concept that really meshes two things you really think about (or see) when you think of radios. This is a very strong, easy to get logo.

Rockit NightClub
The great thing about this logo is it took two completely different topics (rock music and rockets) and seamlessly put them together. At first glance you see an overly decorated guitar, then you see a rocket launch, leaving lots of smoke behind. Very brilliant.

Jazzcuzzi
The reason this logo is so great is because it really captures the essence of what people believe jazz is; calm, smooth and relaxed. The designer chose to represent this by referencing some sort of beautiful horn.

Cafe Melody
Another extremely clever logo design where the designer meshes two different concepts. The idea of the cafe with a coffee and plate is quickly noticed. However, the designer also see’s a volume knob, used to control the melody. One can also see a person with headphones on.

Installer
Though a strong typographic logo, the designer squeezed in a note of musicality. Why not, when the guitar is one of the key things people associate with rock and roll music.

SwanSongs
This is an extremely beautiful logo that uses a treble clef to serve as the beginnings of a swan. With this logo, many would assume the music or services offered here are extremely beautiful, elegant and tender.

Mind Dead
Again, while this logo is typographically strong, the musical reference cannot be missed. The headphones plugged into the word is a really simple yet effective way of saying this group is worth listening to.

Minerva Music Machine
Much like the previous logo design that referenced piano keys, this designer realized the comparison between the ‘m’ and the piano keys. What stands out is how the longer white keys kind of adds that ‘machine’ like repetition to the logo.

Corpse Music
This is another extremely clever logo. The great thing is that the designer recognized the coffin shape looks a lot like the head of a guitar, and used that to great effect.

Crescendo Music Entertainment
The designer here gets props for skillfully turning the company’s initials into a simplified guitar. Nice imaginative flair at play.

Music Delicacy
At first glance you may see a pot with a big spoon in it, but if you happen to look closer, the concoction in the pot is really in the shape of the vinyl record. It really makes you believe you may have a chance to taste the music.

Music Poet
This is a creatively fashioned logo design. The music note serves as the fountain for the pen, properly and easily creating a relationship between ‘music’ and ‘poet.’

Homegrown Music
This logo makes perfect sense, and will be easy to recognize. No need in fancying up a concept that doesn’t need it.

Sun Music
This logo is absolutely beautiful. While it references the shape of a note, it creates this beautiful movement along the stem while the circle seems to represent the ‘sun.’ Really well executed work here.

Sound Bite
A part of making a great logo is knowing whether to focus on a piece of the concept or the whole concept. The designer here chose to focus on the ‘d’ and ‘b’ in this logo, transforming them into a pair of headphones.

Daily Jazz
Not only do you think of smooth sophistication when you think of ‘jazz’ but you almost always think of saxophones. This designer found a way to marry the idea of jazz and paper (writing) to create this logo.

Vinopiano
This is one of those logos where you may see one thing, such as three wine glasses, or you may see another thing, the black and white keys on the piano. This is another clever, simple and well executed design.

Rhythm Magical
Though not exclusively about music, the designer snuck a bit of it in this logo design. Yes, magic and rabbits in hats go hand in hand, but the designer threw in a music note that is concealed as the inside of the rabbits ear. It also could look a bit like the rabbit has on headphones; either way it’s a nice subtle addition.

Campusounds
This logo, again, very simply refers to the music behind this company’s purpose. Campusounds is about hearing the music around different campuses, which is evident by the border which creates a bit of a ’round and round’ movement.

Music Fashion
While the focus on the logo again is typographic, it is overall greatly executed. The typeface used does remind you a bit of ‘fashion’ and the way everything is styled it actually makes you believe in the idea that one can fashion the sound of music.

Rock Stock Festival
When you think of rock and roll, you think of this little ‘devil horn’ sign folks throw up at the concerts. The great thing about this logo is that the fingers seem to double as rock.

Music Books
Here, we have a logo that, again, plays with the piano keys, but this time makes a great comparison between the keys and books on a shelf.

Sounderated
This logo is a bit of a play on words where you can see it saying ‘so underrated’. The logo captures that perfectly by having upside down sound waves.

Plug & Play
More typography play here and just a wonderful idea that makes sense. Everything is connected in some way much like the cords musicians use to plug in and play.

Finishline Studio
This designer chose to play off notes, which is an easy task, but here they completed the look and purpose by making the bar look like that of a finishline.

40
This designer should be commended on their eye, as they created the ’40′ out of shadows, but also completed this look by adding eighth notes to the shadows in places that really make it pop.

Music to My Eyes
This one make take a while to see but the piano keys actually make the longer part of a pencil (thus the triangle at the bottom). It makes sense with regards to writing music.

Mixtape Attack
A mixtape, often associated in previous years with cassette tapes, would be an obvious choice for this logo. However, the designer went a step further by creating a little ‘monster’ out of the cassette tape, adding in the idea of ‘attack.’

Passionato
Another rendition of a note, but the movement and elegance in this execution is extremely…passionate. Really beautiful logo.

Devil’s Music
If there was no name on this logo, we’d all pretty much be able to figure out what it was called ‘Devil’s Music.’ Excellent finished product.

Music Snail
This designer used a treble clef and a double eighth note to help create the look of a snail. This simple yet clever execution is genius and extremely inspiring.

Walking Alone
This simple logo takes the idea of walking on a sidewalk and creates a saxophone out of it. Again, this designers eye should definitely be commended.

Music Gym
Simplicity is really key when you are doing logo design and this is one of the logos that just gets that and still makes perfect sense. The connection is clear, the message is clear and the finished product is excellent.

Shanghai Voices
It’s almost second nature to hear that a musical group wants a logo and to immediately want to fire up something that has musical notes or a treble clef in it. The best way to counter that is to revision it, and that’s exactly what this designer did by adding a silhouette of a famous building in Shanghai. The movement is great here, as well.

Duncan & Noel Acoustic Duet
This logo is a bit more like a graphic, but the execution is pretty awesome. It gives the sense that this duet, would have a nice acoustic guitar and a really folky or down to earth sound, judging by the design.

(rb)


Adobe Illustrator Tutorial: Create a Semi-Realistic Oil Barrel Illustration


  

In the following Adobe Illustrator tutorial you will learn how to create a semi-realistic oil barrel illustration. First, we’ll use several rectangles along with some professional pixel perfect vector shape building techniques to create the starting shapes. Next, we’ll break some of the starting shapes apart as needed using a bunch of Pathfinder tools.

Once the overall illustration comes together, we’ll use some warp effects to add a three-dimensional look to the oil barrel. Finally, we’ll add a grungy texture using a simple radial gradient, some simple blending techniques and a Sponge effect. The final color used for the oil barrel is easily editable so it won’t be difficult for you to use the colors that you like.

Final Image

As always, this is the final image that we’ll be creating:

Step 1

Hit Control + N to create a new document. Enter 600 in the width and height box then click on the Advanced button. Select RGB, Screen (72ppi) and make sure that the "Align New Objects to Pixel Grid" box is unchecked before your click OK. Now, turn on the Grid (View > Grid) and the Snap to Grid (View > Snap to Grid). Next, you’ll need a grid every 5px. Go to Edit > Preferences > Guides & Grid, enter 5 in the Gridline every box and 1 in the Subdivisions box.

You can also open the Info panel (Window > Info) for a live preview with the size and position of your shapes. Do not forget to set the unit of measurement to pixels from Edit > Preferences > Unit > General. All these options will significantly increase your work speed.

Step 2

Pick the Rectangle Tool(M) and create eight 130 by 225px shapes. Fill it with the linear gradient shown below then make a copy in front (Control + C > Control + F). The white numbers from the gradient image stand for location percentage.

Step 3

Again, use the Rectangle Tool(M) and create four, 140 by 5px shapes. Fill them with a simple red, and place them as shown in the following image. The Snap to Grid should ease your work. Select all four rectangles and turn them into a compound path (Object > Compound Path > Make).

Step 4

Select the compound path created in the previous step along with the copy of the rectangle created in the second step, then open the Pathfinder panel (Window > Pathfinder) and click on the Minus Front button. Move to the Layers panel and you will find a group with three simple rectangles. Ungroup them (Shift + Control + G), fill them with white then duplicate them (Control + C > Control + F).

Step 5

Pick the Ellipse Tool(L), create two, 180 by 65px shapes and a 180 by 75px shape. Fill them with a random color and place them as shown in the following image. Again, the Snap to Grid will ease your work.

Step 6

Focus on top shape created in the previous step. Select it along with the copy of the top, white rectangle and click on the Minus Front button from the Pathfinder panel. Move to the Layers panel and you will find a group with four new shapes. Select the two, left shapes and lower their opacity to 35% then select the other two shapes and lower their opacity to 15%. Finally, fill them with the linear gradient shown below. The yellow zero from the gradient image stands for opacity percentage.

Step 7

Move to the other two shapes created in the fifth step and repeat the techniques mentioned in the previous step.

Step 8

Disable the Snap to Grid (View > Snap to Grid) then go to Edit > Preferences > General and make sure that the Keyboard Increment is set at 1px. Focus on the top, white rectangle, select it and make two copies in front (Control + C > Control + F > Control + F). Select the top copy and move it 1px to the left. Reselect both copies and click on the Minus Front button from the Pathfinder panel. Fill the resulting shape with R=35 G=31 B=32.

Step 9

Reselect the top, white rectangle and make two copies in front (Control + C > Control + F > Control + F). Select the top copy and move it 1px to the right. Reselect both copies and click on the Minus Front button from the Pathfinder panel. Fill the resulting shape with R=35 G=31 B=32.

Step 10

Reselect the top, white rectangle and make two new copies in front (Control + C > Control + F > Control + F). Select the top copy and move it 2px to the right. Reselect both copies and click on the Minus Front button from the Pathfinder panel. Fill the resulting shape with R=78 G=78 B=78.

Step 11

Move down to the other two white rectangles and repeat the techniques mentioned in the last three steps.

Step 12

Focus on the top, white rectangle, select it and make two copies in front (Control + C > Control + F > Control + F). Select the top copy and move it 1px down. Reselect both copies and click on the Minus Front button from the Pathfinder panel. Fill the resulting with black and lower its opacity to 35%.

Step 13

Reselect the top, white rectangle and make two new copies in front (Control + C > Control + F > Control + F). Select the top copy and move it 3px down. Reselect both copies and click on the Minus Front button from the Pathfinder panel. Fill the resulting shape with black and lower its opacity to 5%.

Step 14

Reselect the top, white rectangle and make two new copies in front (Control + C > Control + F > Control + F). Select the top copy and move it 5px down. Reselect both copies and click on the Minus Front button from the Pathfinder panel. Fill the resulting shape with black and lower its opacity to 5%.

y

Step 15

Reselect the top, white rectangle and make two new copies in front (Control + C > Control + F > Control + F). Select the top copy and move it 1px up. Reselect both copies and click on the Minus Front button from the Pathfinder panel. Fill the resulting shape with black and lower its opacity to 15%.

Step 16

Reselect the top, white rectangle and make two new copies in front (Control + C > Control + F > Control + F). Select the top copy and move it 3px up. Reselect both copies and click on the Minus Front button from the Pathfinder panel. Fill the resulting shape with black and lower its opacity to 5%.

Step 17

Reselect the top, white rectangle and make only one copy in front (Control + C > Control + F). Select it and move it 5px down. Select this copy along with the original white shape and click on the Minus Front button from the Pathfinder panel. Fill the resulting shape with black and lower its opacity to 5%.

Step 18

Move to the other two white rectangles and repeat the techniques mentioned in the last six steps.

More to Learn on Page Two

We are just over halfway through the tutorial, but don’t stop here. There is still some more to learn to finish up the oil barrels waiting for you over on page two.


  •   
  • Copyright © 1996-2010 BlogmyQuery - BMQ. All rights reserved.
    iDream theme by Templates Next | Powered by WordPress