Author Archive

Freebie: Professional E-Commerce Icons Set (20 Icons)

Advertisement in Freebie: Professional E-Commerce Icons Set (20 Icons)
 in Freebie: Professional E-Commerce Icons Set (20 Icons)  in Freebie: Professional E-Commerce Icons Set (20 Icons)  in Freebie: Professional E-Commerce Icons Set (20 Icons)

Today, we are glad to release a set of 20 high quality E-commerce Icons in 64×64px, available in .png-format. This set was designed by Web Icons Set with the purpose to be used in e-commerce websites and has been exclusively released for Smashing Magazine and its readers. The set includes icons such as Empty Basket, Full Basket, Credit Cards, Delivery, Secure Payment, Checklist, Gifts, Shop Open, Shop Closed, Contact, Wallet and others.

Professional-ecommerce-icons in Freebie: Professional E-Commerce Icons Set (20 Icons)

Download the Icon Set for Free!

You can use the set for all of your projects for free and without any restrictions. You can freely use it for both your private and commercial projects, including software, online services, templates and themes. Please link to this article if you want to spread the word.

Icons-screenshot in Freebie: Professional E-Commerce Icons Set (20 Icons)

Behind the Design

As always, here are some insights from the designer:

Web Icon Set aims to provide professional and quality Web icons to Web designers and developers. Every icon is 100% hand-crafted with a strong focus on consistency and usability. We’ve tried to create a set of professionally designed e-commerce icons that can help designers build their e-commerce websites.

Thank you very much, guys! We really appreciate the effort!


© Smashing Editorial for Smashing Magazine, 2011.


Responsive Web Design Techniques, Tools and Design Strategies

Advertisement in Responsive Web Design Techniques, Tools and Design Strategies
 in Responsive Web Design Techniques, Tools and Design Strategies  in Responsive Web Design Techniques, Tools and Design Strategies  in Responsive Web Design Techniques, Tools and Design Strategies

Back in January, we published an article on responsive design, “Responsive Web Design: What It Is and How to Use It.� Responsive design continues to get a lot of attention, but considering how different it is from the “traditional� way of designing websites, it can be a bit overwhelming for those designers who have yet to try it.

To that end, we’ve compiled this round-up of resources for creating responsive website designs. Included are tutorials, techniques, articles, tools and more, all geared toward giving you the specific knowledge you need to create your own responsive designs.

Responsive Design Techniques

CSS Transitions and Media Queries
Elliot Jay Stocks provides insight into the combination of CSS media queries and CSS transitions. The basic premise is this: you use media queries to design responsive websites that adapt in layout according to browser width, and you constantly resize your browser to see how the website performs, but every time a query kicks in, there’s a harsh jump between the first style and the second. Why not use some simple CSS transitions to smooth the jump by animating the resize? A nice case study.

Responsive-design-116 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Data Tables
Chris Coyier and Scott Jehl are experimenting with responsive design techniques for displaying data tables. By default, data tables can be quite wide, and necessarily so. You could zoom out and see the whole table, but then the text size would be too small to read. You could zoom in to make it readable, but then you’d have to scroll both vertically and horizontally (sad face) to browse the table. One solution is to reformat the table for better readability. Another is to display a pie graph from the data. Yet another is to adapt the table into a mini-graphic for narrow screens (rather than interfering much with the content when the full table is displayed).

Responsive-design-105 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Navigation Menus: Convert a Menu to a Dropdown for Small Screens
Chris Coyier describes another technique for converting a regular row of links into a dropdown menu when the browser window is narrow. When the user is on a small screen and clicks the dropdown, they’ll get an interface to select an option that is nice and big and easy to choose. Obviously much better than displaying a tiny link.

Responsive-design-131 in Responsive Web Design Techniques, Tools and Design Strategies

CSS Media Queries and Using Available Space
A tutorial from CSS-Tricks that discusses how to make subtle changes with media queries and how to use media queries in a single style sheet. For instance, if you have a fluid-width design in which the sidebar is 35% of the width of the page, depending on the width of the browser window, you could say, “If the browser is really narrow, do this. If it’s wider, do this. If it’s really wide, do this.â€� In the article, you’ll learn how to modify a list of links according to the browser’s viewport.

Mediaq in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Images, Responsive Videos

Fluid Images
Fluid images are a central aspect of a responsive design. This article by Ethan Marcotte gives a thorough overview on creating them using the classic img { max-width: 100%; } code snippet, as well as details to get you started.

Fluidimages in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Image: Experimenting With Context-Aware Image Sizing
An alternative approach to fluid images by Filament Group. This technique allows designers to create responsive layouts that serve different image sizes at different resolutions. Effectively, it allows designers to create mobile-optimized images for smaller screens, and then serve higher-resolution versions to larger screens. Filament Group has developed this technique that uses .htaccess files and JavaScript to serve up different sized images based on the screen width. An alternative solution is to use tools like TinySrc which allows you to merely prefix all large images in your source code with a TinySrc URL, and the tool does the rest.

Filament1 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Images and Context-Aware Image Sizing
Craig Russell has developed a technique that uses a server-side script (in PHP) to serve up images of several different resolutions. The idea is that within the PHP script, a nested array is used that lists image files and their relative percentage scales. In HTML, the image’s src attribute would be set to get the requested image’s id, but with no scale specified. A JavaScript calculates the percentage width of the image relative to the maximum width of the container, and this figure is then appended to the end of the src attribute as the scale parameter. The comments in the article contain some nice ideas and suggestions on how the technique could be improved.

Responsive-design-101 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Images Right Now
Harry Roberts’ idea is to use the img element for the smaller of the two images, the image that you want mobile users to download. You would also have a containing div to which you apply the large version of the image as a background through CSS. You then hide the img from desktop users, and show them the large CSS background, and hide the background image from mobile users and just serve them the smaller inline image.

Responsive-design-110 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Images Using CSS3
Nicolas Gallagher’s method relies on the use of @media queries, CSS3-generated content and the CSS3 extension to the attr() function. By combining the content property with the CSS3 extension to attr(), you are able to specify that an attribute’s value should be interpreted as the URL part of a url() expression. In this case, it means you will be able to replace an image’s content with the image found at the destination URL, stored in a custom HTML data-* attribute.

Responsive-102 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Images Using Cookies
Keith Clark suggests using cookies to serve smaller images to mobile users. Whenever a browser requests a file from a server, it automatically forwards any cookie data along with the request. If we use JavaScript to populate a cookie with the current screen’s dimensions, all subsequent requests made by the browser will pass this data to the server. In other words, the server would know the screen size of the device that is asking for the file.

Responsive-103 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Images With ExpressionEngine
John Faulds presents a technique for responsive images that is different from the techniques presented above. It involves querying the device’s user agent string to determine whether it is mobile, and then setting a global variable that can then be used in templates to modify the size of the image output. Basically, only one image gets sent to the browser, but that image is different depending on whether you’re viewing the page on a mobile or desktop device.

Responsive-design-118 in Responsive Web Design Techniques, Tools and Design Strategies

CSS: Elastic Videos
Nick La applies the max-width: 100%; snippet to videos and presents techniques that make HTML5 videos and object- and iFrame-embedded videos responsive. For the latter, the trick is very simple. Just wrap the embedding code in a div container, and specify a 50% to 60% padding-bottom. Then, specify the child elements (iFrame, object embed) and a 100% width and 100% height, with absolute positioning. This will force the embedded elements to expand full width automatically. Initially discovered by Thierry Koblentz.

Responsive-design-107 in Responsive Web Design Techniques, Tools and Design Strategies

Resizeable Images (At Full Resolution!)
A quick tutorial from CSS-Tricks on resizing images while maintaining resolution.

Resizeableimages in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Email Newsletters

Optimizing Your Email for Mobile Devices With the Media Query
Wide emails often require horizontal scrolling, especially when there’s a large image. This case study by Campaign Monitor explains how emails can be optimized for mobile devices using media queries and offers a couple of useful techniques and snippets to be used right away.

Responsive-104 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Design for Email, the Largest Mobile Audience
Another interesting case study that shows how the development team behind Beanstalk applied screen-size-specific media queries to target styles, and what design decisions were made to make the mobile email experience better.

Responsive-design-133 in Responsive Web Design Techniques, Tools and Design Strategies

Media Queries in HTML Emails
This article covers using media queries to target specific mobile email clients.

Emailmediaqueries in Responsive Web Design Techniques, Tools and Design Strategies

Guide to CSS Support in Email
Designing an HTML email that renders consistently across major email clients can be time-consuming. Support for even simple CSS varies considerably between clients, and even different versions of the same client. Campaign Monitor has put together a guide to save you the time and frustration of figuring it out for yourself. With 24 different email clients tested, it covers all of the popular applications across desktop, Web and mobile email.

Responsive-design-137 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Design Tools

You can build a responsive design from scratch, or you can use some of the tools listed below to speed up and smooth out the process.

Respond.js
Scott Jehl’s fast and lightweight polyfill for min-width and max-width CSS3 media queries (for IE 6 to 8 and more). css3-mediaqueries-js is another script that enables IE 5+, Safari 2 and Firefox 1+ to transparently parse, test and apply CSS3 media queries.

Responsive-design-134 in Responsive Web Design Techniques, Tools and Design Strategies

WebPutty: Scientific Progress CSS Editing
This tool is a Web-based CSS editor with auto-save feature and a real-time preview of your website. WebPutty also has CSS selector highlighting and SCSS support (for Sass and LESS), as well as Compass support. To use the tool, just embed a link tag at the end of your website’s head tag.

Webputty in Responsive Web Design Techniques, Tools and Design Strategies

Debugging CSS Media Queries
In responsive Web design, we’re working with different states, widths and viewport sizes. Johan Brook shares a quick tip for indicating (with pure CSS) which media query has kicked in. The article also provides a mixin for developers using Sass. A demo is available as well.

Responsive-105 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Design Testing
This tool is for everyone who needs a quick and easy way to test their website design in multiple screen widths. Change the defaultURL variable at the top of the responsive.js file to your own site and navigate your website from within the frames.

Matt-Kersley in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Containers: Selector Queries
This JavaScript by Andy Hume allows you to add selector queries and responsive containers to your design. Essentially, you can apply different class values to an HTML element based on its width.

Responsive-106 in Responsive Web Design Techniques, Tools and Design Strategies

Resize My Browser
If you need your browser to display content in a certain window size this is what you have been looking for. Just click on the size you need and check out what your size looks like. Does not work in Chrome and Opera due to issues with the “ResizeTo” event.

Resize in Responsive Web Design Techniques, Tools and Design Strategies

Media Query Bookmarklet
A handy tool that shows you exactly what size the viewport has and which media query just fired. Drag it to your bookmarks bar and have it ready when needed.

Responsive-109 in Responsive Web Design Techniques, Tools and Design Strategies

Responsivepx
Use the information this little gadget provides in your media queries to create responsive designs.

Responsivepx in Responsive Web Design Techniques, Tools and Design Strategies

ProtoFluid
A tool for rapid prototyping of responsive design. You can prototype CSS on a variety of popular device sizes, orientations and browsers, be they phones (BlackBerry Torch, Google Nexus One, iPhone, Motorola Droid), tablets (BlackBerry Playbook, iPad, Samsung Galaxy Tab, Dell Streak), monitors or televisions (720p, 1080p). You can preview designs right in the browser and use your development tools like Firebug. You might want to check an alternative tool ScreenFly as well.

Protofluid in Responsive Web Design Techniques, Tools and Design Strategies

Fluid Grid Calculator
Harry Roberts has developed a calculator and generator of fluid grids for your responsive designs. Just provide the number of columns, the width of one column and the width of the gutters, and the tool will generate a fluid grid system in CSS for you. Handy!

Responsive-design-102 in Responsive Web Design Techniques, Tools and Design Strategies

Free HTML5/CSS3 WordPress 3.1+ Theme With Responsive Layout: Yoko
Yoko is a modern and flexible WordPress theme. With the responsive layout based on CSS3 media queries, the theme adjusts to different screen sizes. The design is optimized for big desktop screens, tablets and small smartphone screens. To make your blog more individual, you can use the new post formats (like gallery, aside or quote), choose your own logo and header image, customize the background and link color.

Release in Responsive Web Design Techniques, Tools and Design Strategies

Scherzo, a Responsive WordPress Theme
This WordPress theme is a fine example of responsive design, displaying nicely on almost all devices and screens.

Responsive Design Templates

320 and Up
320 and Up works on the “tiny screen first� principle, whereby designs are created for mobile screens first, and then expanded for tablets, desktops, and large screens. It works well as an extension to HTML5 Boilerplate and as a standalone kit.

320andup in Responsive Web Design Techniques, Tools and Design Strategies

Media Queries for Standard Devices
Here is a useful template for media queries for standard devices: empty placeholders for targeting devices and attributes that you might be interested in when making responsive designs.

Responsive-design-120 in Responsive Web Design Techniques, Tools and Design Strategies

Mobile Boilerplate
Here is a customizable template for creating rich, high-performance mobile Web apps. You’ll get cross-browser consistency among A-grade smartphones, and fallback support for legacy BlackBerry, Symbian and IE Mobile. You’ll also get offline caching for free, fast button clicks, a media query polyfill and many common mobile Webkit optimizations.

Boiler in Responsive Web Design Techniques, Tools and Design Strategies

Skeleton: Beautiful Boilerplate for Responsive, Mobile-Friendly Development
Skeleton is a small collection of CSS and JavaScript files that can help you rapidly develop websites that look beautiful at any size, be it a 17-inch laptop or an iPhone. Skeleton is a grid that is responsive right down to mobile. It is well organized and well structured and provides most basic styles as a foundation.

Responsive-design-128 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Design Frameworks

1140 CSS Grid
1140 CSS Grid is optimized to work on screens ranging from the size of mobiles to 1280 pixels wide. It’s a simple flexible grid system that uses media queries for smaller screens, essentially stacking columns on top of one another.

1140cssgrid in Responsive Web Design Techniques, Tools and Design Strategies

inuit.css
This CSS framework is built to provide a solid foundation for designs on smaller screens (such as tablets) and tiny screens (such as phones) straight out of the box with minimal effort. It also has a custom grid system builder for creating fluid grid systems.

Responsive-1241 in Responsive Web Design Techniques, Tools and Design Strategies

Flurid
Flurid is a liquid grid layout with up to 16 columns.

Flurid in Responsive Web Design Techniques, Tools and Design Strategies

FluidGrids
FluidGrids is a fluid grid framework that creates layouts based on 6, 7, 8, 9, 10, 12 or 16 columns.

Fluidgrids in Responsive Web Design Techniques, Tools and Design Strategies

Less Framework 4
A CSS grid system for creating adaptive layouts. It includes four basic layouts (including tablet, mobile and wide mobile), with three sets of typography presets.

Lessframework4 in Responsive Web Design Techniques, Tools and Design Strategies

Fluid Grid System
This fluid grid framework includes a typographic grid and baseline grid.

Fluidgridsystem in Responsive Web Design Techniques, Tools and Design Strategies

Tiny Fluid Grid
Tiny Fluid Grid helps you generate your own fluid grid with 12, 16 or 24 columns, minimum and maximum widths, and percentage-based gutters.

Tinyfluidgrid in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Design Workflow and Strategies

The Responsive Designer’s Workflow
Luke Wroblewski’s conference notes on Ethan Marcotte’s presentation about applying responsive Web design principles and workflows to the redesign of a major newspaper website. Among other things, Ethan explains how he approaches the responsive design methodology, what the design process looks like and how prototyping is done in the context of responsive design.

Responsive-design-104 in Responsive Web Design Techniques, Tools and Design Strategies

The Goldilocks Approach to Responsive Web Design
The Goldilocks Approach stresses device-independent layouts that look perfect regardless of the device they’re viewed on.

Goldilocks in Responsive Web Design Techniques, Tools and Design Strategies

Content Choreography
Read up on how to properly plan your site to live up to todays standards. Begin to choreograph content proportional to size to serve the best possible experience at any width.

Trentwalton1 in Responsive Web Design Techniques, Tools and Design Strategies

Structured Content First
In this presentation, Stephen Hay discusses a couple of troubles you might run into when structuring your content and argues that properly structured content is portable to future platforms. Stephen suggests that we think about creating and designing structured content first that caters to the lowest common layout denominator, whether this be a small screen or a text browser. This content should be able to go anywhere.

Stephen-Hay in Responsive Web Design Techniques, Tools and Design Strategies

Design for a Target Experience First
Another interesting perspective on a responsive designer’s workflow; Nathan C. Ford focuses on experience of its users first and then derives user scenarios and media queries from it. “There are goals for sites that reach beyond simple readability, where a lack of features can actually diminish the experience. I am working on such a project now. Our approach has been to peruse the research and tailor an optimal experience for the most likely user scenarios. Working out from there, we judicially edit and hone for each media query.”

Responsive-115 in Responsive Web Design Techniques, Tools and Design Strategies

More Responsive Design, Please
This article by Jason Things covers responsive design based on a layout/content/capability/user intent scheme, which sheds interesting new light on the challenges that responsive design can create. It’s a well thought out piece and is certainly worth a read.

Scheme in Responsive Web Design Techniques, Tools and Design Strategies

Breaking Development
Luke Wroblewski took notes at the Breaking Development Conference while Stephen Hay talked about the realities of designing for different device experiences.

Bildschirmfoto-2011-07-21-um-13 42 40 in Responsive Web Design Techniques, Tools and Design Strategies

Patterns for Multiscreen Strategies
Have a look at this simple but effective slideshow to get an idea of which core factors play a role in multiscreen concepts.

Patterns in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Web Design from the Future
According to Kyle Neath, responsive web design is about a lot more than the size of your screen. This talk is about about how GitHub handles links, the url bar, partial page updates, and explains why Kyle thinks the HTML5 history API is the most important thing to happen to front end development since Firebug. An inspiring presentation.

Responsive-1131 in Responsive Web Design Techniques, Tools and Design Strategies

Developing a Progressive Mobile Strategy
In this presentation, Dave Olsen presents a progressive mobile strategy that consists of audience strategy, content strategy and platform strategy. Dave argues that to develop a sustainable and scalable mobile strategy, you need to answer the questions, “What value will the targeted audiences get from this content?� and “How do we develop solutions to handle both mobile and native now, as well as the devices of the future?� An interesting presentation.

Responsive-design-112 in Responsive Web Design Techniques, Tools and Design Strategies

How to Use CSS3 Media Queries to Create a Mobile Version of Your Website
In this Smashing Magazine article, Rachel Andrew explains how, with a few CSS rules, you can create an iPhone version of your website using CSS3 — one that will work now. You’ll see a very simple example and learn the process of adding a small device style sheet to a website to show how easily we can add mobile-specific style sheets to existing websites. You may want to consider reading Aaron Gustafson’s article “Adaptive Layouts With Media Queriesâ€� and Emily Lewis’ piece “Respond to Different Devices With CSS3 Media Queries” as well.

Responsive-design-126 in Responsive Web Design Techniques, Tools and Design Strategies

Discussions and Points of View on Responsive Design

While not tutorials per se, the articles here give you valuable insight into why you should use responsive design techniques (and when you maybe shouldn’t use them).

Responsive by Default
Andy Hume explains what in his opinion responsiveness is all about. It’s what a website does when it’s loaded into an unknown browser on an unknown device by an unknown individual. It’s “how you deal with “the most hostile software development environment ever imaginedâ€� (via Douglas Crockford). Like progressive enhancement it’s a strategy that frees you to work with the web rather than fight against it.” An interesting point of view.

Responsive-114 in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Web Design or Separate Mobile Site? Eh, It Depends
An interesting article discussing the pros and cons of responsive designs vs. dedicated mobile websites.

Ehitdepends in Responsive Web Design Techniques, Tools and Design Strategies

The Case Against Responsive Web Design
It seems only fair to include some dissenting opinions here about when responsive design is and is not appropriate. This article discusses why responsive design doesn’t always make sense from a user experience perspective. Take a look in the comments section, too. Luke Jones has a similar opinion.

Against in Responsive Web Design Techniques, Tools and Design Strategies

A Responsive Mind
A discussion on Jeremy Keith’s blog about the necessary parts of a responsive design and how to effectively create different layouts based on different screen sizes. Examples are included.

Responsive Enhancement
An excellent introduction to responsive design as a way of thinking rather than as a tool or technique. Jeremy Keith argues that responsive Web design can’t be tacked on to the end of an existing workflow. Instead of pixel perfection, we should be thinking of proportion perfection. An inspiring read.

Mobile-First Responsive Web Design
Mobile First Responsive Web Design is a combination of philosophies and strategies with the aim to achieve a wider application of best practices in the area.

Where are the Mobile First Web Designs?
In this article Jason Grigsby presents the findings from his study on responsive designs, their features and appearance as well as general remarks on the state of art of Responsive Web Design.

Further Resources

Here are some additional resources for creating responsive designs that don’t fit neatly into the categories above.

Media Queries
A growing collection of websites that use media queries.

Mediaqueries in Responsive Web Design Techniques, Tools and Design Strategies

Responsive Web Design, by Ethan Marcotte
This book, written by Ethan Marcotte and published by A Book Apart, is a fantastic resource for learning how to design responsive websites. It covers the basics of the responsive Web, flexible grid systems, flexible images and media queries, and it gives insight into how to create responsive designs.

Responsive-120 in Responsive Web Design Techniques, Tools and Design Strategies

The Big Web Show Episode #9: Responsive Web Design
Jeffrey Zeldman and Dan Benjamin sit down with Ethan Marcotte for episode 9 of The Big Web Show to discuss responsive design, among other topics.

Last Click

The Latest in HTML5
This slideshow covers some techniques and lesser-known HTML5 gems that could get implemented in browsers in the near future: among other things, server-side media queries with JavaScript and form-factor detection.

Matchmedia in Responsive Web Design Techniques, Tools and Design Strategies

Would you like to see more round-ups like this one on SM?


(al)


© Smashing Editorial for Smashing Magazine, 2011.


Desktop Wallpaper Calendar: July 2011

Advertisement in Desktop Wallpaper Calendar: July 2011
 in Desktop Wallpaper Calendar: July 2011  in Desktop Wallpaper Calendar: July 2011  in Desktop Wallpaper Calendar: July 2011

We always try our best to challenge your artistic abilities and produce some interesting, beautiful and creative artwork. And as designers we usually turn to different sources of inspiration. As a matter of fact, we’ve discovered the best one — desktop wallpapers that are a little more distinctive than the usual crowd. This creativity mission has been going on for almost two years now, and we are very thankful to all designers who have contributed and are still diligently contributing each month.

We continue to nourish you with a monthly spoon of inspiration. This post features 25 free desktop wallpapers created by artists across the globe for July 2011. Both versions with a calendar and without a calendar can be downloaded for free. It’s time to freshen up your wallpaper!

Please note that:

  • All images can be clicked on and lead to the preview of the wallpaper,
  • You can feature your work in our magazine by taking part in our Desktop Wallpaper Calendar series. We are regularly looking for creative designers and artists to be featured on Smashing Magazine. Are you one of them?

All Seeing

"An abstract, gold all-seeing eyeball. No real rhyme or reason to it – enjoy!" Designed by Evan Eckard from USA.

All Seeing 72 in Desktop Wallpaper Calendar: July 2011

Unwritten Stories

"For all the unwritten stories that happened to us this summer." Designed by Ivan Ushmorov from Germany.

Unwritten Stories 74 in Desktop Wallpaper Calendar: July 2011

The Kingdom

"Old world atlas." Designed by Jarod Mottley from Trinidad & Tobago.

The Kingdom 63 in Desktop Wallpaper Calendar: July 2011

Summer Feet

Designed by Pietje Precies from The Netherlands.

Summer Feet 65 in Desktop Wallpaper Calendar: July 2011

California

"”Many of us are dreaming of spending the summer in California – who doesn’t?”." Designed by Lotum from Germany.

California 1 in Desktop Wallpaper Calendar: July 2011

Freedom Happiness

"July month is seventh month of the year. For this month I have choose the theme of illustration.The basic idea of my theme is Freedom happiness as in this month most of the country celebratestheir Independence Day. So I took that idea and design my wallpaper as Freedom is all equal toeach an d everyone, whether they are human being or other creatures as everyone love freedom.Lots of birds flying high in the blue sky escaping from the cage and enjoying their freedom.So lets celebrates the freedom happiness." Designed by Pooja Jha from India.

Freedom Happiness 92 in Desktop Wallpaper Calendar: July 2011

The Colourful Animal

Designed by Dana Gerigk from Germany.

Colourful Peacock 35 in Desktop Wallpaper Calendar: July 2011

Against The Gravity

"I was inspired by one of the Bible verse: “But a net is spread in vain before the eyes of them that have wings” (Proverbs 1:17- Douay-Rheims Bible). Spread your wings and fly :)." Designed by Dadsdouter from Indonesia.

Againts The 14 in Desktop Wallpaper Calendar: July 2011

Summer Breeze (Updated)

Designed by Design 311 from Belgium.

Summer Breeze 45 in Desktop Wallpaper Calendar: July 2011

Color Panels

Designed by Marcus from USA.

Six Panel 4 in Desktop Wallpaper Calendar: July 2011

Water_lily

"The Water Lily is the birth flower for the month of July." Designed by Edward Ellsworth from USA.

Water Lily 32 in Desktop Wallpaper Calendar: July 2011

Them Crooked Vultures

"Portrait of the 3 members of the band, made with the lyrics of their songs." Designed by Alexandre Bourgois from France.

Them Crooked Vultures 94 in Desktop Wallpaper Calendar: July 2011

Ghost Jump

"Shot this pictures in Hamburg, Germany in the “Old Elbe Tunnel”.Enjoy July!" Designed by Marco Palma from Italy/Germany.

Ghost Jump 30 in Desktop Wallpaper Calendar: July 2011

Digital Beauty

Designed by Rewizja.net from Poland.

Digitalbeauty 72 in Desktop Wallpaper Calendar: July 2011

Summer Night

"The magic of a summer night." Designed by Mandi Coleman from USA.

Summer Night 74 in Desktop Wallpaper Calendar: July 2011

Be Cool!

"Keep Cool in the Summer." Designed by Nenad S. Lazich from Serbia.

Be Cool 47 in Desktop Wallpaper Calendar: July 2011

Time For Ice Cream

"Even in Canada, July can get pretty hot. Who doesn’t love a nice cold ice cream cone on a warm summer day?" Designed by Athena Studios from Canada.

Time For Ice 63 in Desktop Wallpaper Calendar: July 2011

Summer (Updated)

"It’s too hot to think of a description… Just spending summertime on the beach." Designed by Ron Gilad from Israel.

Summer 80 in Desktop Wallpaper Calendar: July 2011

July Heat

"a vintage fan for the heat of July!" Designed by Almog Shemesh from Israel.

July Heat 45 in Desktop Wallpaper Calendar: July 2011

Knee High By The Fourth Of July

"A common saying around here, farmers in the American midwest use “knee high” as a way to test if their corn is growing normally by the 4th of July. The photograph was taken in Cascade, Iowa in the U.S." Designed by Jared Rogers from USA.

Knee High 1 in Desktop Wallpaper Calendar: July 2011

Private Island

Designed by Kayro C from China.

Private Island 71 in Desktop Wallpaper Calendar: July 2011

The Cocoons

"Viktor Mazhlekov’s painting “The cocoons” is one of the famous and favourited by people. It is oil on canvas painting 90×75 cm." Designed by Viktor Mazhlekov from Bulgaria.

The Cocoons 25 in Desktop Wallpaper Calendar: July 2011

Join In Next Month!

Please note that we respect and carefully consider the ideas and motivation behind each and every artist’s work. This is why we give all artists the full freedom to explore their creativity and express emotions and experience throughout their works. This is also why the themes of the wallpapers weren’t anyhow influenced by us, but rather designed from scratch by the artists themselves.

A big thank you to all designers for their participation. Join in next month!

What’s Your Favourite?

What’s your favorite theme or wallpaper for this month? Please let us know in the comment section below!

(il) (vf)


© Smashing Editorial for Smashing Magazine, 2011.


Free Prestashop and WordPress E-Commerce Theme: Velvet Sky

Advertisement in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky  in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky  in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky

In case you’ve been looking for a nice e-commerce theme for your website or any ongoing projects, today we’ve got something for you. We’re releasing yet another freebie — a Prestashop and WordPress e-commerce theme called “Velvet Sky” which has exclusively been developed by DapurPixel for Smashing Magazine and its readers. The warm, natural brown colours within the theme portray much comfort and will hopefully provide your customers with a very calm and engaging environment in which they can find the items they’re searching for in no time.

Release in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky

Download the Theme for Free!

The Prestashop theme is released under Creative Commons; the WordPress theme is released under GPL. Both themes are free to use for private as well as commercial projects. There are no restrictions; you may modify the theme as you wish. Please link to this article if you want to spread the word!

Preview in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky

Features

  • WordPress 3.1+ compatible
  • Prestashop 1.4.2.5 compatible
  • Custom homepage
  • Horizontal menu and submenu integration
  • Custom slideshow module
  • Combo slider on the homepage
  • One page checkout and guest checkout supported
  • Custom advertisement block module
  • IE7+, Safari, Opera, Firefox, Chrome compatible

Blog-1 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Blog-1 (large preview)

Blog-2 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Blog-2 (large preview)

Blog-3 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Blog-3 (large preview)

Checkout-1 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Checkout-1 (large preview)

Checkout-2 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Checkout-2 (large preview)

Checkout-3 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Checkout-3 (large preview)

Checkout-4 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Checkout-4 (large preview)

Checkout-5 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Checkout-5 (large preview)

Detail-1 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Detail-1 (large preview)

Detail-2 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Detail-2 (large preview)

Detail-3 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Detail-3 (large preview)

Detail-4 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Detail-4 (large preview)

Detail-5 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Detail-5 (large preview)

Detail-6 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Detail-6 (large preview)

Detail-7 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Detail-7 (large preview)

Home-1 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Home-1 (large preview)

Home-2 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Home page 1 (click for a large preview)

Home-3 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Home page 2 (click for a large preview)

Home-4 in Free Prestashop and WordPress E-Commerce Theme: Velvet Sky
Home page 3 (click for a large preview)

Behind the Design

As always, here are some insights from the designer:

“Attractive! Alluring! Beauty! Desire! Glamour is an impression that we wanted you to have by looking at this theme. Velvet Sky has become an e-commerce theme that provides an atmosphere full of charm. We did a lot of customization; the featured product on homepage, the category product page, the product details. Velvet Sky is our humble attempt to provide a feeling of comfort in shopping experience. We worked hard to make sure that customers can found the items needed without being confused. Support your customers well, and start out by building a personal relation between you and your customers. We hope that you’ll find the theme useful for your projects.”

Thank you, Arrie. We appreciate your work and your good intentions.

Related Post

You might be interested in the following related post:


© Smashing Editorial for Smashing Magazine, 2011.


Smashing Cartoons: June 2011

Advertisement in Smashing Cartoons: June 2011
 in Smashing Cartoons: June 2011  in Smashing Cartoons: June 2011  in Smashing Cartoons: June 2011

We all have our favorite client stories, embarrassing design flaws and never-ending user requests which are all just a part of what we, as designers and developers, encounter very often in our daily work routine. In this new post series on Smashing Magazine, we’d like to put some of these situations into the spotlight and discuss them with you. The cartoons are all dedicated to Web design and also have a comic twist about everything happening around the Web and latest trends.

The main character of the cartoons is Fleaty, a talented, hard-working designer with big ambitions yet not that much luck when it comes to clients. Hopefully, Fleaty will put a smile on your face and maybe remind all of us of the flaws we have, and help us finally get rid of them. The creative mind behind the Smashing Cartoons is our talented illustrator Ricardo Gimenes.

We’ll be adding a new cartoon every week; the latest cartoon is presented on the Smashing Magazine’s sidebar as well as on the Smashing Cartoons page. There you will also find all previous issues of the Smashing Cartoons series for your convenience.

Fleaty’s experience in June:

Making The Web A Better Place

Fleaty 11 Big in Smashing Cartoons: June 2011

Mobile First

Fleaty 12 BigC in Smashing Cartoons: June 2011

They Just Don’t Care

Fleaty 09 Big Colour in Smashing Cartoons: June 2011

Users Don’t Read, They Scan

Fleaty 10C in Smashing Cartoons: June 2011

Tell Us Your Story!

Have you experienced something similar to what Fleaty has experienced? What’s your ultimate client story? Share your story with us in the comment section below!

For previous cartoons, feel free to check our Smashing Cartoons Archive.


© Smashing Editorial for Smashing Magazine, 2011.


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