vendredi 4 octobre 2013

daily tutorial photoshop for Six Revisions

Be The First To Comment
Six Revisions
 
Many wonderful memories are captured in black and white.

With digital photographs, the art is now in creating black and white images. This course will teach you how to use Photoshop techniques to create beautiful images.
From our sponsors
Design-Based Media Queries
Oct 4th 2013, 10:00, by Jacob Gube

In the beginning, the device-specific media queries we’ve been using in our websites served us just fine because we just needed a quick-and-dirty responsive design solution to accomodate the iPhone and similar-sized smartphones.

But with the constantly expanding amount of devices being put out in the market, it’s time to rethink the common responsive design breakpoints we’re employing in our designs. Why? Because this approach isn’t sustainable. We also have to change the underlying reasons and motivating factors behind why we’re setting our responsive design breakpoints at these particular points.

I’ll discuss the idea of design-based media queries (as opposed to the more prevalent way of basing our media queries on common mobile devices). This approach to responsive web design could help us make our sites as future-proof and device-agnostic as possible.

Why Our Media Queries Need to Change

The media queries we are using are typically based on the screen dimensions of currently popular mobile devices.

At first, when the web design community started getting serious about responsive web design, the popular mobile devices were the iPhone and Android smartphones.

So, to start, media queries for mobile devices looked something conceptually similar to this:

  /* iPhone and other smartphones (portrait) */  @media screen and (max-device-width: 320px) {    }    /* iPhone and other smartphones (landscape) */  @media screen and (max-device-width: 480px) {    }  

As technology moved forward — and in particular with the rise of tablets and retina displays — the range of screen sizes and resolutions broadened. So we decided to extend our media queries for these new mobile devices.

To accommodate the new crop of gadgets, media queries would now look something similar to this:

  /* iPhone and other smartphones (portrait) */  @media screen and (max-device-width: 320px) {    }    /* iPhone and other smartphones (landscape) */  @media screen and (max-device-width: 480px) {    }    /* iPad and other tablets (portrait) */  @media screen and (max-device-width: 768px) {    }    /* iPad and other tablets (landscape) */  @media screen and (max-device-width: 1024px) {    }    /* iPhone 5 (portrait) */  @media screen and (max-device-width: 568px) and (orientation: portrait) {    }    /* iPhone 5 (landscape) */  @media screen and (max-device-width: 568px) and (orientation: landscape) {    }  

Samsung Galaxy is really popular too, so we might as well add it to our growing collection of media queries:

  /* Samsung Galaxy (portrait) */  @media screen and (max-width: 385px) {    }    /* Samsung Galaxy (landscape) */  @media screen and (max-width: 690px) {    }    /* iPhone and other smartphones (portrait) */  @media screen and (max-device-width: 320px) {    }    /* iPhone and other smartphones (landscape) */  @media screen and (max-device-width: 480px) {    }    /* iPad and other tablets (portrait) */  @media screen and (max-device-width: 768px) {    }    /* iPad and other tablets (landscape) */  @media screen and (max-device-width: 1024px) {    }    /* iPhone 5 (portrait) */  @media screen and (max-device-width: 568px) and (orientation: portrait) {    }    /* iPhone 5 (landscape) */  @media screen and (max-device-width: 568px) and (orientation: landscape) {    }  

What about Kindle? Or the iPad mini?

Not to worry, there’s a list of media queries for Kindle (and other devices) and there’s a list of Apple-product-specific media queries for the iPad mini, iPhone 2G, etc. to help us extend our media queries collection.

The reason for showing you all of this is to illustrate how this approach to responsive web design does not work.

This way of designing websites contradicts one of the key principles of web design that we need to always work towards: There should be no strong distinction between Desktop Web and Mobile Web. And, ideally, there should only be one universal Web.

By setting our media queries based on the dimensions of a few specific devices, we’re effectively creating not just a separate Mobile Web, but also an iPhone Web, an Android Web, a Blackberry Web and so forth.

This approach to responsive web design can lead us to a place where we’re unintentionally creating designs based on decisions made for us by the companies that produce these mobile devices, a scenario that’s frighteningly similar to the Browser Wars.

For each responsive design we build, instead of asking for a list of Android screen sizes or what the popular responsive design breakpoints are right now we should really be asking another question:

What should the breakpoints be for this particular design I’m working on?

If our web designs are to be future-proof — and perhaps, more importantly, if the Web is to remain universal — our media queries need to be based on our web design, not on the presently prevalent mobile devices.

Why the Old Breakpoints Aren’t Working

Through a real-world example, let’s look at how setting media queries based on specific devices can fail.

In order to have a responsive web design, my company’s website, Compass Design, was originally built using three media queries:

  /* iPad (portrait) */  @media screen and (max-width: 760px) {

} /* Smartphones (landscape) */ @media screen and (max-width: 480px) { } /* Smartphones (portrait) */ @media screen and (max-width: 320px) { }

These media queries were defined a few years back, when the vast majority of people using mobile devices were using an iPhone 4 or similar (320x480px) or an iPad (760x1024px). And, on these devices, the web design worked fine.

The desktop layout is fairly standard, a horizontal navigation menu with a sidebar to the right of the content:

The layout designed for tablets is more unusual. The navigation menu’s layout changes to fit all of its content in the available space for tablets in portrait orientation:

And the layout intended for smartphones is different too, this time with a link to the navigation menu which is responsively moved to the bottom of the page:

"My responsive design stopped working!"

Since the time the site was designed, the range of devices used to access it has grown quite rapidly.

For example:

  • The iPhone 5 is 568px wide in landscape mode
  • Many Android smartphones have large screens (such as the Samsung Galaxy, which is 380x685px)
  • Smaller tablets have been released since the time my site was originally designed, tablets with a 7” screen and not a 10” screen (although some of these, such as the iPad mini, still work as if they have the same pixel dimensions as their larger counterparts)

Let’s have a look at the site on iPhone 5. Because iPhone 5 is wider than 480px in landscape mode, the smartphone is using the layout designed for tablets, which renders a broken navigation menu:

This demonstrates the point I’m trying to make: Using devices as the guide for our web design’s responsiveness doesn’t work. It especially doesn’t work if we care about future-proofing our work.

As the number of devices continue to grow, it will be impossible to predict what our designs will be viewed on. And not only is it impossible to predict what new devices are going to enter the market, it should be unnecessary to do so anyways when it comes to our web designs.

What we need to do instead is identify the points at which our web design stops to work the way we want it to, and then set our responsive breakpoints there.

Design-Based Media Queries in Action

The new media queries for my site are based on two guiding principles:

  1. The content layout needs to adapt to whatever the device width is, so that the content is easier to read.
  2. On touchscreens and mobile devices: Navigation menu items need to be large enough so that users can easily interact with them.

The desktop layout includes a full-width navigation menu. This layout works down to 1005px, at which point some of the navigation menu items start to stray below each other, as shown below:

Because this particular web design breaks at exactly 1005px due to the amount and lengths of its navigation menu items, I’ll set the breakpoint there:

  /* Breakpoint #1 for medium-sized screens */  @media screen and (max-width: 1005px) {    }  

Note that in my stylesheet comments and also in my two guiding principles, I have removed any references to any particular mobile device.

Working down in width, the layout breaks again at 745px, as you can see in this screenshot:

So I set another media query breakpoint at 745px:

  /* Breakpoint #2 for small-sized screens */  @media screen and (max-width: 745px) {    }  

The layout now works at 745px wide:

The site now has a set of breakpoints which are completely device-agnostic and ensure that the design will adapt the best way possible to any device.

The specific technique for design-based media queries I showed you just now needs refinement, especially for sites that continually update their navigation menu and content.

The important idea is this: We should choose media queries based on the design, not based on specific devices.

Moving Towards a Universal Web

The idea of design-based media queries is a very simple one. And adopting the concept in a web design project can be as rudimentary as resizing your browser window to the point where the layout breaks, and then setting the media queries at that point, as in my case.

The "standard" media queries we’re currently using conveniently ignore the growing range of devices that don’t conform to the dimensions Apple, Samsung, Sony, and other device vendors have chosen for us. Media queries based on specific devices won’t allow us to build sites that are future-proof and device-agnostic.

If we want to continue to uphold the essence of what’s great about the Web, to continue to create a Web that is universal — a Web that isn’t being driven and led by a particular mobile device, or web browser, or company — then one of the things we can do is move away from device-specific media queries.

Related Content

About the Author

Rachel McCollin is a freelance web designer specializing in WordPress and responsive design. She’s written three books on WordPress. Connect with her on Twitter @rachelmccollin and visit her site at rachelmccollin.co.uk.

The post Design-Based Media Queries appeared first on Six Revisions.

Delicious Digg Evernote Facebook Google Bookmarks LinkedIn StumbleUpon Tumblr Twitter
You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions

mercredi 2 octobre 2013

daily tutorial photoshop for Six Revisions

Be The First To Comment
Six Revisions
 
Complimentary Downloads

7 Days of Complimentary Downloads: 100,000+ Motion Backgrounds, Video Clips, Production Music Tracks, Sound Effects, Special Effects and More.
From our sponsors
Using Your Design Skills to Get Website Traffic
Oct 2nd 2013, 10:00, by Jacob Gube

If you’ve got design skills, you have plenty of opportunities available to you for generating additional site traffic.

In this article, I’ll discuss some ideas and show you some examples of website content that have the ability to bring in a lot of site visitors.

Infographics

Infographics creatively make complex information more interesting and easier to understand. Because infographics are so well-suited to conveying interesting information quickly — which is optimal on the Internet — they are an extremely popular form of Web content.

According to online marketing firm Smart Insights, the number of people searching for "infographics" has increased by 800% since 2010.

Source: smartinsights.com

A good infographic can spread quickly across social networks like Facebook and Twitter and social bookmarking sites like Pinterest, StumbleUpon and Reddit, giving you the chance to generate a lot of site traffic rapidly.

Here’s an example of an infographic about the Mobile Web:

The infographic above has over 650 retweets and close to 200 Facebook Likes. To date, it has gotten close to 12,000 pageviews.

Infographic Tips

Once you’ve designed your infographic, it’s time to kick-start the snowball effect.

You should host the infographic on your own website so that you reap the benefit of any incoming links and traffic.

As a next step, you should email relevant blogs and websites asking them to repost your infographic with a link back to your site as the source.

You can also submit your infographic to galleries like visualizing.org and visual.ly.

For inspiration, check out this showcase of 40 useful and creative infographics.

Freebies

Orman Clark is a top-selling WordPress theme creator, having sold over $1 million worth of WordPress themes on ThemeForest.

One of his main promotional strategies is to give away free graphic resources on his personal website, Premium Pixels:

On the download page for each freebie, Clark displays a gallery of his WordPress themes on the sidebar:

It’s possible this strategy is part of the reason for his success in being a top-seller of premium WordPress themes.

Next time you create something cool in Photoshop or Illustrator, package the file up for distribution and give it away. If the freebie is useful, website owners will gladly send you links and traffic.

Desktop and Mobile Wallpapers

A beautiful wallpaper can attract links to your website.

Better yet, there are literally hundreds of wallpaper galleries you can submit your wallpaper to such as Wallbase.cc and InterfaceLIFT. These sites can provide you with significant amounts of site traffic if your wallpaper gets featured.

For example, as part of my work at Microlancer, I organized a wallpaper to be illustrated and distributed on our site:

Besides being a nice little freebie for our site users, I was able to submit the wallpaper to dozens of desktop and mobile wallpaper galleries, and receive dozens of links and plenty of site traffic in return.

Wallpaper Design Tip

To give your wallpaper design the best possible chance of success, you should create different-sized versions of it for popular desktop monitor screen sizes and mobile devices.

Below is a list of common wallpaper dimensions:

Dimension (px) For
2560×1440 27” widescreen monitor
1920×1200 23-24” widescreen monitor
1680×1050 22” widescreen monitor
1600×1200 20-21” widescreen monitor
1440×900 14-15” (laptops)
1280×1024 A standard resolution for display monitors
854×960 Android smartphone
640×960 iPhone 4
640×1136 iPhone 5
1024×1024 iPad

Custom-Designed Article Layouts

When you open the pages of a print magazine, nearly every article’s layout is custom-designed to suit the article’s topic. Why not do the same with your blog posts?

Jason Santa Maria added to his fame by designing custom layouts for each of his blog posts, like this one:

Trent Walton also creates custom webpage layouts for articles on his website. Here’s an example of one of his custom-designed articles:

With custom webpage layouts, your blog posts and articles will be extra memorable and shareable on social media.

Minisites

A minisite is a small website that’s narrowly focused around one thing. Because minisites include so little content, you can spend extra time making it beautiful.

When Envato hit 1 million members, the company made a minisite to celebrate the milestone:

Another great example of a minisite is How much to make an app?:

A clever minisite can be built quickly and send traffic and links to your site for years to come.

Your Turn

What are other ways designers can bring traffic into their website? Share your tips in the comments!

Related Content

About the Author

Skellie is a blogger and content marketer based in Melbourne, Australia. She works for Microlancer, a marketplace for freelance services. Connect with her on Twitter as @skellie.

The post Using Your Design Skills to Get Website Traffic appeared first on Six Revisions.

Delicious Digg Evernote Facebook Google Bookmarks LinkedIn StumbleUpon Tumblr Twitter
You are receiving this email because you subscribed to this feed at blogtrottr.com.

If you no longer wish to receive these emails, you can unsubscribe from this feed, or manage all your subscriptions
 

© 2011 Photoshop TUTO - Designed by Mukund | ToS | Privacy Policy | Sitemap

About Us | Contact Us | Write For Us