Some better way of doing it..

You’ve probably already heard about responsive design, which is website design that responds to the device constraints of the person viewing it. It’s a hot topic right now, and with good reason: alternative devices outsell desktop PCs 4 to 1 already, and within three years more Internet traffic in the US will go through mobile devices than through laptops or desktops.

All of this is forcing a convergence on what Jeremy Keith calls the “one Web”: a single Web that doesn’t care what device you’re on, how you’re viewing content or how you’re interacting with it.

What we found at ZURB was that while the concept of one Web is strong and the need for responsive websites great, the tools to help us quickly build that way just didn’t exist. That’s why we builtFoundation, a framework to help you build prototypes and production code that’s truly responsive.

[Editor's note: Have you already got your copy of the Smashing Book #2? The book shares valuable practical insight into design, usability and coding. Have a look at the contents.]

The Problem with Global CSS

For years at ZURB, we used and refined a global CSS file that included a nice 960 grid, typography styles, buttons and other common elements. The trouble with our global CSS was that none of these pieces were written to be used by others, so they required a good deal of ramping up and training, with no great documentation.

screenshot

Our CSS style guide had a lot of good global elements, but it wasn’t well documented, and it certainly wasn’t ready for other devices.

The bigger problem was that it wasn’t designed to be responsive or mobile-friendly in any way. We were stuck in the same rut that a lot of designers are in: creating a 1000-pixel-wide canvas, putting a 960 grid on it, and calling it a day. Our tools were built to support that workflow. So, we rewrote it into Foundation, a framework for everyone to be able to rapidly prototype in a responsive way.

screenshot

Foundation is an MIT-licensed framework that includes a nestable arbitrary-width responsive grid; mobile styles, buttons and typography; layout affordances such as tabs and pagination; forms; and useful JavaScript plugins. We wrote or packaged all of these pieces to achieve a few goals:

  1. Quickly train new designers, inside and outside ZURB, to use a common framework;
  2. Rapidly prototype websites for desktops and any mobile device;
  3. Easily customize and complete the prototype to turn it into production code for particular projects or clients.

The first goal can’t be overstated; the value of having a single set of styles and best practices that the team can iterate on as a whole and communicate to our clients is tremendous. We can ramp up new designers much more quickly, build things faster and work together more easily. On one recent project, we even got a volunteer sufficiently up to speed on Foundation that we could collaborate on code?—?and it took only about 15 minutes.

So, How Does Foundation Work?

The core of Foundation can be summed up in a few points:

  • A 12-column, percentage-based grid with an arbitrary maximum width.
    The grid can be nested and used for quite complex layouts, and it works all the way back to IE 7. The grid reshuffles itself for smaller devices.
  • Image styles that disregard pixels.
    Images in Foundation are scaled by the grid to different widths.
  • UI and layout elements.
    Foundation includes common pieces such as typography and forms, as well as tabs, pagination, N-up grids and more.
  • Mobile visibility classes.
    Rapidly prototyping is partly about having built-in functionality to tailor the experience. Foundation lets you very quickly hide and show elements on desktops, tablets and phones.

We deliberately built Foundation as a starting point, not as a style guide. We’ve included some styles to help you rapidly build something clickable and usable, but not something stylistically complete. Everything in Foundation is meant to be customized, including button styles, form styles (even custom radio, checkbox and select elements), typography, and layout elements such as tabs.

The Grid

A lot of grids are floating around, including some very good ones right here on Smashing Coding. Grid systems have a few issues, though, and we built Foundation to tackle them… well, some of them.

Fluidity

One of the critical pieces of device-agnostic design is having a fluid layout that conforms to the size (and orientation) of the device. Foundation’s grid is completely fluid, with percentage-based widths and margins, and it works all the way back to IE 7 (but not IE 6?—?philosophically speaking, acting like IE 6 doesn’t exist makes sense at this point). The HTML markup is pretty simple. Here’s an example of the grid in use, where we nest it for a more complex layout:

01 <div class="row">
02   <div class="eight columns">
03     <p>…</p>
04     <div class="row">
05       <div class="six columns">
06         <h5>Another Section (.six.columns)</h5>
07         <p>…</p>
08   </div>
09       <div class="six columns">
10         <h5>Another Section (.six.columns)</h5>
11         <p>…</p>
12       </div>
13       </div>
14     <p>Now the nested row has been closed, and we're back to the original eight-column section.</p>
15   </div>
16 </div>

You can check out the above code on this example page.

screenshot

Here are some of the built-in grid constructs, all of which scale with the browser window.

Responsiveness

The second critical piece is for the grid to be able to easily adapt to small devices and their unique constraints. We tackled this in three ways:

  • On small devices (such as phones), the grid simply stacks vertically, with every column running the full width.
  • We’ve also included block-grid classes, which are definitions for ULs that can be two-up through five-up and that remain a grid even on very small devices.
  • And we have mobile visibility classes. These are a group of styles that enable you to quickly try things out by hiding and showing elements on different kinds of devices. You can attach classes like so:
1 <div class="hide-on-phones">
2     <p>This is a paragraph that we don't want to see on small devices.</p>
3 </div>
4 <div class="show-on-phones">
5     <p>This paragraph will be shown only on phones, not on tablets or desktops.</p>
6 </div>

Another interesting use for the classes is to prototype a common mobile consideration: placing mobile navigation at the bottom, as opposed to its more common placement at the top. You could do this:

01 <nav class="hide-on-phones">
02   <ul>
03     <li><a href=#>…<a></li>
04     <li><a href=#>…<a></li>
05     <li><a href=#>…<a></li>
06   </ul>
07 </nav>
08
09 <nav class="show-on-phones">
10   <dl class="mobile tabs">
11     <dd><a href="#">…</a></dd>
12     <dd><a href="#">…</a></dd>
13     <dd><a href="#">…</a></dd>
14   </dl>
15 </nav>

screenshot

Foundation lets you write code once and show it on different devices easily.

Semantics

This one is tricky. A very compelling case is to be made that grid systems are by nature not semantic. This is partly true; they’re still descriptive of their function, but they do break the separation of data and display.

We didn’t want to base the Foundation framework on another extension, such as LESS. LESS is a great tool enabling you to use variables, shortcuts and more in your CSS, but we didn’t want to have to rely on it and add another barrier to using Foundation. The recent article we mentioned above actually fixed the data and display issue of grids by using LESS, which is awesome, but Foundation doesn’t fix that. Here’s why…

All of these methods are a stopgap. The replacement technique might come out next month or next year, but really all of these tools will change drastically in the very near future. Tools like LESS help us get a little closer to a very clean solution, but at a higher technology and learning cost. We wanted Foundation to be the fastest way to prototype for all kinds of devices, so we paid a small price for truly separated markup.

Rapid Prototyping Examples

Let’s look at a recent example for which Foundation was used. Every year, we do a 24-hour design marathon for a local non-profit, usually producing new marketing collateral and a new website. This year, we chose Rebekah Children’s Services, a great organization that helps with adoptions and takes care of disadvantaged kids.

This year, we wanted to build a website that was really responsive, and we had very little time to do it. Using just Foundation, we started prototyping the website based on some sketches we had done. In two hours, we managed to build this prototype.

screenshot

Using Foundation, we built the prototype on the left in two hours (including every screen), and then started modifying it until it became the final website on the right.

It’s not terribly pretty, but it did give us something we could click around in, add copy to and iterate on. In the prototype, we used only a bare minimum of custom styles to more accurately represent the intended visuals.

Once we completed the prototype, we were able to complete the visual design and apply it to the existing Foundation code base to produce the final website. The final website retains all of Foundation’s framework, with the new styles applied on top of it.

How to Further Tailor the Experience

We recently launched an app through which to give traditional design feedback on mockups and websites. It’s called Spur, and it has been great fun for us; not only is it in our wheelhouse (for design feedback), but building a responsive Web app was an awesome opportunity.

Spur has a number of tools and actions, as well as some simple forms and a fairly complex JavaScript- and HTML-loading animation. Adapting all of this to mobile devices could have been really painful, but by starting with Foundation, we cut down on that considerably and prototyped the app quickly.

screenshot

Spur on a desktop is different than Spur on a mobile device such as an iPhone.

Spur helped us get more comfortable with the constraints of a given device, including screen size, orientation, tap target size and copy. Spur is simpler on smaller devices, but it’s not stripped down. You can still capture a page, view it through the various filters, and share it with someone else.

Rapid Prototyping Is Required Now

The days of creating a blank Photoshop canvas and laying down a 960 grid are over, even if some of us are still working in that shared fantasy world. Mobile devices?—?or, let’s just say, devices beyond just laptops and desktops?—?are already prevalent and will only become more ubiquitous.

Don’t build a desktop website that’s pixel-perfect before thinking about other devices; get used to designing for several different sizes, and then quickly prototype your design to get a feel for the flow, function and interaction.

We built Foundation to help us do this faster and to develop better websites and apps for us and our clients. We feel so strongly about the need for this that Foundation is MIT-licensed and completely free to use, forever. If you try it out and have success with it, let us know. We’d love to hear about it, just as we’d love to hear about bugs or issues that you’ve run into.

We’re excited about this watershed moment in Web design (and in connectivity and data availability), and you should be, too: our industry will change more in the next three years than it has in its entire history. We hope this helps.

———–

Original Article By : ZURB , Source site : smashingmagazine.com

30 Beautiful Dark-themed Web Designs for Inspiration

Using a dark color theme in a website can convey many types of feelings and emotions towards its visitors. Edginess, elegance, modernity — these are just a handful of things that can be associated with dark colors.

There are countless of gorgeous dark-themed web designs on the Web. In this web design showcase, you’ll find 30 hand-picked websites that use a primarily dark color palette.

 

1. Jet Cooper

Jet Cooper

2. La Bubbly

La Bubbly

3. Designers.MX

Designers.MX

4. Thismanslife

Thismanslife

5. Michael Korstick

Michael Korstick

6. Fueled by Design

Fueled by Design

7. Youzee

Youzee

8. DonQ Rum

DonQ Rum

9. Cuban Council

Cuban Council

10. workdiary.de

workdiary.de

11. James Garner

James Garner

12. McCormack & Morrison

McCormack & Morrison

13. Société Perrier

Société Perrier

14. Rogge & Pott

Rogge & Pott

15. The Weather Digital & Print

The Weather Digital & Print

16. Skewed Icons

Skewed Icons

17. Alien Bikes

Alien Bikes

18. 42Angels

42Angels

19. Justdot

Justdot

20. Designer Gleb

Designer Gleb

21. simó

simó

22. Kansas City CreepFest

ansas City CreepFest

23. The Kennedys

The Kennedys

24. Team Viget

Team Viget

25. Cafundó

Cafundo

26. Boudin & Beer

Boudin & Beer

27. Michelle Carrillo

Michelle Carrillo

28. Sullivan NYC

Sullivan NYC

29. Hollister Co.

Hollister Co.

30. Kettle

Kettle

Article originally written by : Jacob Gube on http://sixrevisions.com

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

25 Excellent Photoshop Web Design Layout Tutorials

Photoshop is a popular web design tool. With it, you can create web design mock-ups that can later on be converted to a functional HTML/CSS template.

This collection of tutorials features top-notch techniques on how to create web design layouts using Photoshop.

1. Clean Style Portfolio Layout

A step-by-step Photoshop web design layout tutorial using basic techniques.

Clean Style Portfolio Layout

2. Clean Blog Layout in Photoshop

Learn how to make a dark-themed blog design layout in this Photoshop tutorial.

Clean Blog Layout in Photoshop

3. Create a Portfolio Web Layout in Photoshop

Discover how to use patterns in website layouts through this Photoshop tutorial.

Create a Portfolio Web Layout in Photoshop

4. How to Make a Vibrant Portfolio Web Design in Photoshop

This Photoshop tutorial uses 960 Grid System for laying out the web page.

How to Make a Vibrant Portfolio Web Design in Photoshop

5. Create an Elegant Photography Web Layout in Photoshop

This simple tutorial shows you how to apply background textures in your web designs.

Create an Elegant Photography Web Layout in Photoshop

6. Photo Gallery Website Layout in Photoshop

Learn to make a dark-themed photo gallery via this excellent Photoshop tutorial.

Photo Gallery Website Layout in Photoshop

7. Create a Movie Video Streaming Website

In this Photoshop tutorial, you’ll use layer styles to create great web design elements.

Create a Movie Video Streaming Website

8. How to Build a Stylish Portfolio Web Design Concept

Learn techniques for creating elegant web designs in Photoshop through this tutorial.

How to Build a Stylish Portfolio Web Design Concept

9. Create a Modern Lab Theme Web Design in Photoshop

This tutorial will show you design techniques for making slick web layouts.

Create a Modern Lab Theme Web Design in Photoshop

10. Create an Extremely Simple Dark Web Design in Photoshop

In this tutorial, you’ll learn plenty of techniques such as how to make a web button.

11. How to Create a Sleek Grid Based Website Design

From paper to Photoshop, learn how to lay out a web design on a grid.

How to Create a Sleek Grid Based Website Design

12. How to Create a Vintage Photoshop Website Layout

Make a stylish vintage-themed design by reading this awesome Photoshop tutorial.

How to Create a Vintage Photoshop Website Layout

13. Create a Simple Clean Portfolio Layout in Photoshop

This Photoshop layout tutorial is perfect for portfolio sites as well as web app sites.

Create a Simple Clean Portfolio Layout in Photoshop

14. 3D Portfolio Dark Layout in Photoshop

You’ll use Photoshop guides, layer styles and more in this web design tutorial.

3D Portfolio Dark Layout in Photoshop

15. Design a Clean and Colorful Ecommerce Layout in Photoshop

This tutorial will walk you through the creation of an e-store product page design.

Design a Clean and Colorful Ecommerce Layout in Photoshop

16. Design an Innovative Portfolio Site Using Alternative UI/UX

This tutorial shows you the creation of a web page that has a unique user interface.

Design an Innovative Portfolio Site Using Alternative UI/UX

17. Design a Sleek Mobile App Website

Create a simple dark-themed web design layout using basic Photoshop techniques.

Design a Sleek Mobile App Website

18. Design a Warm, Cheerful Website Interface in Adobe Photoshop

This superb web layout tutorial has a PSD to HTML conversion follow-up.

Design a Warm, Cheerful Website Interface in Adobe Photoshop

19. Impressive Videographer Website Portfolio Layout in Photoshop

In this tutorial, you’ll use the Custom Shape Tool to make a background pattern.

Impressive Videographer Website Portfolio Layout in Photoshop

20. How to Create a WordPress Theme in Photoshop

Learn to make a simple blog layout using Photoshop.

How to Create a WordPress Theme in Photoshop

21. Design a Bold and Vibrant Portfolio

This web layout tutorial walks you through the creation of a colorful portfolio site.

Design a Bold and Vibrant Portfolio

22. Create an Elegant Patterned Web Design in Photoshop

Among the things you’ll learn in this tutorial is the creation of Photoshop patterns.

Create an Elegant Patterned Web Design in Photoshop

23. Design a Clean Corporate Website Layout

Learn how to incorporate stock photos in your website layout’s header in this tutorial.

Design a Clean Corporate Website Layout

24. How to Create a Colorful Business Web Layout

This Photoshop tutorial will demonstrate how to incorporate icons in your web designs.

25. Design a Textured “Coming Soon” Web Page in Photoshop

Learn to make a simple web design with beautiful textures in this Photoshop tutorial.

Design a Textured "Coming Soon" Web Page in Photoshop

Designers are constantly striving to create eye-catching designs without losing the usability features that add significant importance to the experience of online shopping. Today’s showcase presents a variety of websites with elegant design solutions and innovative design techniques. We have analyzed the designs and now discuss their advantages and disadvantages in this review. We also suggest improvements and further ideas that could help improve shopping experience on these sites. Hopefully, you can learn something useful from our thoughts.

Heartbreaker Fashion
With clothing inspired by ’50s and ’60s fashion, pin-up girls and vintage culture, Heartbreaker’s design nicely fits the company’s profile, with its pastels and retro textures. Good use of dotted and dashed borders, which separate the various elements rather delicately. Notice how well the designers keep the vintage theme across the product and category pages, with nice attention to detail for the credit card icons in the footer.

Vintage-Inspired-Fashion-by-Heartbreaker-Fashion in Showcase of Beautiful (or Creative) E-Commerce Websites

Hunter’s Wines
Hunter’s Wines is an online wine store. The front page introduces some dynamics in its grid by placing text blocks next to each other in a somewhat chaotic manner. Notice how well the design separates sections of the pages by using yellow color in the background of the wine bottles. Product pages contain an interactive, sophisticated search filter, backed by a pastel color scheme and beautiful typography that nicely fits the overall feel of the site. The color of the text on call-to-action buttons could be improved.

Also, we have doubts about some elements on the page. A symbol under the wine bottles doesn’t really have any purpose and the arrow in the right upper corner of sections in product pages doesn’t seem to work properly. Overall, a very nice design which could use just a bit of rethinking to improve the shopping experience.

All-Wines- -Hunters-Wines-Marlborough-New-Zealand-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Sassy Duck
Sassy Duck is a young fashion-forward handbag brand that creates luscious accessories for the modern woman. This website literally elicits a hunger for those female accessories. Again, large product photography is striking on the website, trying to evoke an emotional response from the site’s visitors. It’s interesting that the overview pages do not contain prices — they are displayed only once the visitor hovers over the product image. The call-to-action buttons could use some :hover:focus and :activestates to make the buttons a bit more responsive. The horizontal product navigation pans across as the mouse nears the edge of the page. A nice example of how an e-commerce website can work with a minimal amount of text.

Sassy-Duck- -Welcome-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Telegramme Studio
Probably the most eye-catching detail in Telegramme Studio’s design is vivid, high-resolution product typograrphy displayed in the horizontal slideshow in the upper area of the front page. The slideshow might be moving a bit too quickly for some visitors. The grid remains consistent across the pages, always focusing on the designs produced by the agency. A nice example of a site on which high quality product shots are integral to each page.

STORE-Telegramme-Studio-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Oi Polloi
Oi Polloi is small retail store based in the Northern Quarter, Manchester, UK. This website design is (again) in retro style, supported by the typewriter-style typograph and old print-style textures. They capture the Oi Polloi brand well. The navigation menu is a good old drop-down which doesn’t quite work, especially because the page has six of them on top. This requires a bit more clicks than you’re used to on an e-commerce website. When you roll over an item on a product page, a tooltip provides details about available (and unavailable) colours and sizes. It might be useful including these options in the search as well.

Oi-Polloi-of-Manchesters-home-page -copy in Showcase of Beautiful (or Creative) E-Commerce Websites

A Modern Eden
A Modern Eden sells posters and iPhone applications. The design also features a large horizontal slideshow area on which all illustrations have a nice shadow to make them look a bit more realistic. The fonts used are chosen carefully and used consistenly throughout the design. The shopping basket ribbon placed next to the main navigation in the right upper corner is a nice touch. Product pages are nicely designed, with attractive green call-to-action buttons. It’s interesting how the designers display the price tag: it’s put somewhat above the product item’s title with a red circle in the background.

Home-A-Modern-Eden-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Sky’s Guide Service
Sky’s Guide is a wonderful example of what a service website can look like with a quality set of textures and images. The choice of colors for design elements and body copy nicely complements the theme of the website and logo of the company (dark red and light brown). Call-to-action buttons are carefully designed to stand out against other elements and capture the user’s attention.

Notice a simple yet striking grid in the footer and a consistent use of fonts across the site. However, the site misses subtle hover effects to make the experience a bit more responsive. The font size of some texts on the site could be increased as well.

Skys-Guide-Service-Oregon-Salmon-Steelhead-and-Sturgeon-Fishing in Showcase of Beautiful (or Creative) E-Commerce Websites

Patrik Ervell
Patrik Ervell demonstrates innovation at its finest. Category pages present a Flash video of the clothes being modelled on an actual male model, giving the customer a sense for how the clothing would actually look on them. The website also gracefully degrades to static images for browsers without Flash support. A very interesting take on the modern clothing website, and good use of white space. Unfortunately, the product page does not have a Flash video, although it might be a bit annoying if it did. The typography could be improved a bit to make the texts more readable and more pleasing to read.

Patrik-Ervell- -Shop in Showcase of Beautiful (or Creative) E-Commerce Websites

Matthew Williamson
Designer fashion outlet Matthew Williamson demonstrates good use of fonts, contrast and high-quality images. The product pages allow users to zoom in and out to take a closer look at the shop items. Also, the product page provides a size guide, a delivery guide, a return guide for customers as well as comprehensive product details. The website does not feel particularly dynamic, though; the sidebar navigation has to reanimate after each page load. The splash page isn’t necessary, either. An example of how beautiful imagery doesn’t quite work when overall usability of the website isn’t good enough.

Buy-Matthew-Williamson-Designer-Fashion- -Official-Online-Shop in Showcase of Beautiful (or Creative) E-Commerce Websites

Paul Smith
The Paul Smith website has an elegant design that emphasizes the quality of the brand. There is something quite appealing about the simple navigation at the top, especially the logo and colored horizontal stripes. The main shop page has a bottom-top navigation (instead of the traditional drop-down) which is not quite intuitive at the first glance. What is striking is that each product page has plenty of high-quality product images which is unfortunately not that usual on e-commerce websites.

Paul-Smith-Women-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Chicago L-Shirts
Chicago L-Shirts is big and bold on Helvetica and the dark processed vintage illustrations. The website is unique and hits you straight away with the featured product on sale, which fills the entire background. What’s interesting is that the shop doesn’t really have an overview page on which all t-shirts would be presented. Instead, the visitor has to navigate using “Prev” and “Next” links. And actually, it works quite well, because there are not so many t-shirts to browse through. A nice example of a shop which makes sure that every product page has a strong photographic presence. Unfortunately, arrows in the navigation aren’t clickable and different views (e.g. side view) of every t-shirt isn’t available.

Chicago-L-Shirts-El-Stop-T-shirts-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

W+K Studio
WK Studio sells various stationary, t-shirts and children’s clothing. The color scheme is warm and friendly, and so is the stylish navigation and large product previews. Built on the BigCartel shopping cart, the shopping experience is pleasurable for a small store. Notice the lovely price tags shaped in the form of the heart which is an essential part of the studio’s logo. The color and typography of the body copy could be improved, and so could the typography. Very simple design that doesn’t look too simple because of the very well thought-out style and theme of the site.

W K-Studio- -Home-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Marie Catrib’s
Probably the most striking attribute of this website is its playfulness. The typography is inviting and attractive and makes the reading experience pleasurable. The navigation menu on the top is very simple, but nice; subtle use of texture fits nicely to the style of the website. Also, notice the dashed horizontal line on the top and the decorative ellipses spinned in the footer of the page. When you hover on an item on the products overview page, two additional navigation options appear: “More info” and “+ Cart” which is a nice example of a context-sensitive navigation. Great use of subtle colors, textures and bold fonts bring out the tastiness of the freshly baked bread and confectioneries offered at Marie Catrib’s.

The-Goodies- -Marie-Catribs-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Sanctuary T Shop
The landing page for Sanctuary T really helps to sell the brand and welcome customers. Best-selling teas are beautifully listed underneath the large eye-catching slideshow. New products are introduced using striking, pleasing and eye-catching illustrations. The site uses many colors (7 on the front page), and although they do fight for user’s attention, they actually never really get in the way. The typography is pleasant and inviting, however, mostly images are used to embed the fonts on the pages (and sometimes, Cufón is used). Notice how wonderfully the designers use tea cups to display the rating of every tea. Sanctuary T is a prime example of a website that brings the best out of square-edge elements and white space dividers.

Pure-and-Artisanal-Loose-Leaf-Teas- -Sanctuary-T-Shop-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Bohemia
There is certainly a lot to like about this website: the blended shades of blues, contrasting orange highlights, delicately patterned borders (complemented with an equally elegant choice of typography) and the subtle shadows on the roll-over navigation tabs. The design shows a lot of attention to small details, be it texture in the background or a “telephone” icon in the footer which works very well with the style of the site. The mega drop-down menu looks nice and stands out on hover. The page has a lot of whitespace, especially on overview pages and product pages and makes the shopping experience lightweight and easy.

Bohemia-Bohemian-Clothing-Odd-Molly-Clothes-and-Moroccan-Pouffes-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Grenson
Grenson is exemplary for a very strong and consistent grid layout. The design is accentuated with red highlights. The most striking element of the website is the roll-over product previews on single product pages, which automatically zooms in and pans to wherever the mouse is. It’s quite a nice touch and removes the extra clicks required to zoom and pan. A clean and good design without distractions and unnecessary trickery.

Grenson- -Shop- -Mens-Brogues-Mens-Boots-Mens-Shoes-English-Shoes-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Cow&Co. Superstore
Cow&Co demonstrates good use of interactive elements in the filtered navigation to make page selection a little more interesting. Adding items to the basket is quick and easy, and a lot of the navigation occurs without having to reload the page. The designers of the shop do not highlight “Add to basket” buttons, although it would actually make it just a bit easier if the buttons would stand out a bit more. The interesting part is that when you click on a product image on the overview page, the details are displayed on the right, without the page being reloaded. It’s hard to say if it’s a good idea or not: this behvaior might be a bit confusing for visitors who wouldn’t be able to locate the detail page. It would be useful to highlight it in some way when it appears after the click, though.

CowCo- -Online-Superstore-Magnifique in Showcase of Beautiful (or Creative) E-Commerce Websites

Dark Sky
Dark Sky’s website shows how dots can be used to build and structure the layout of the page. The typography is just wonderful: attractive, yet not too eye-catching to distract. Notice the whitespace in the vertical grid layout and on the product pages. Call-to-action-buttons have the same background color as many other elements on the page which may be a bit confusing at first. However, other colors probably wouldn’t work that well together with other elements.

Dark-Sky-Magazine-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

RFRM
By itself, RFRM would be a very simple and not that remarkable website with handmade, vintage inspired jewelry. What sets this online shop apart from other sites is that the centrepiece of the website is the large window, or “hole,” that exposes the background layer image below. When you scroll the website, it feels like you’re looking out of the window — which looks very interesting and unusual.

RFRM-Handmade-Vintage-Inspired-Jewelry-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Theo
This website doesn’t look remarkable, but it uses a nice design technique that helps it stand out. Each product page has a large seamless header that creates a large frame for the product. This allows for large product shots of background images that can be used on each page. Interesting idea that may find its place in your e-commerce website as well. The downside of the design is the not so comforable navigation: all navigation items are always hidden in the horizontal navigation on the top of every page.

Home- -Theo-copy in Showcase of Beautiful (or Creative) E-Commerce Websites

Ben The Bodyguard
This website of an upcoming app for iPhone or iPod touch has been discussed a lot over the last months, and rightly so. The site is a remarkable example of how an original, innovative design can bring a lot of attention to the site that actually hasn’t been released yet. As you scroll the page down, Ben the Bodyguard is following you through the city, leaving comments about the neighbourhood and services he provides. There are also some tricks which become apparent if you try resizing your browser. Ben’s path ends at the e-mail subscription box. Wonderful idea, wonderfully executed. A wonderful example of storytelling. The Web could use more websites like this one.

Ben-bodyguard in Showcase of Beautiful (or Creative) E-Commerce Websites

In Conclusion

It goes without saying: large high quality product shots are a key element of success on e-commerce websites. JavaScript-based image slideshows of products, elegant rich typography and meaningful use of white space all enhance the shopping experience and increase conversion rates. Some good websites experiment with innovative design techniques, yet all good websites pay a lot of attention to the look and feel of every single design element, be it a shopping cart, search box or headings. We are looking forward to more beautiful and usable e-commerce websites appearing online in the months to come.

 

Cloud Computing

I think everybody must have heard the word “CLOUD COMPUTING” now a days. So this blog is about little bit introduction about cloud computing and cloud computing platforms.

Wikipedia gives following definition of cloud computing.
Cloud computing is internet-based computing, whereby shared resources, software, and information are provided to computers and other devices on demand, like the electricity grid.”
That’s a really good definition. Now a days cloud computing is the Buzz. Everybody is talking about it. Legends like Microsoft has invested heavily in cloud computing. So many companies are entering in to cloud computing business. CIOs/CTOs of any company want to bring Cloud Computing to their business. They are exploring options available for cloud computing platform. After cloud computing two new words are introduced.

SaaS: Software as a ServicePaaS: Platform as a Service
So what is this all about? Lets explore it in details. First of all lets talk about Cloud Computing. Why its been introduced? What was wrong with earlier approach? If you consider scenario before cloud computing , you have one server available. You use it for almost all your computing need. But the problem was CPU idle time. When server is busy with some request. It can not pay attention to other request. Also CPU is also in idle mode. What if we can utilize CPU idle time for other computing needs. But how we can do it? Then something called Virtualization is introduced. Yes this is the technology upon which cloud computing is built. My physical CPU is only one while I have more than one Virtual CPUs on top of it. Which can use my physical CPU. Virtual CPUs use almost all the real CPU cycle. Real CPU will never be in ideal mode.

So I have some hardware + software combinations which boost up my server performance. This is what is Virtualization. This is what is cloud computing. There are some large data centers in which bunch of servers are there. In those servers virtulazation is used so that each server can act as more than one server. This is the Magic of cloud computing.

Now lets talk about Cloud computing platforms available in market. There are various platforms available in market for cloud computing, but I will discuss about only two platform that I know.
As a former Microsoft .Net developer (although I am still passionate about .Net), first platform comes in my mind is Microsoft Windows Azure

Microsoft Windows Azure:

Microsoft definition for Windows Azure: ”
The Windows Azure platform is a flexible cloud–computing platform that lets you focus on solving business problems and addressing customer needs.”

Microsoft has invested heavily in data centers for Azure. Windows Azure is the platform using which one can develop cloud based application. If you want to develop .Net based application on local machine, you need certain things like .Net Framework,Sql Server, Windows server etc. This all provided by Windows Azure Platform in slightly different manner through App fabric, Sql Azure.

So in short It’s a platform for running Windows applications and storing their data in the cloud.
Its designed in a way that developer can develop cloud based application using various .Net supported languages like C#,VB.Net.
I will not go in more details as lots of stuff are available for windows azure on internet. Let’s discuss the second cloud computing platform.

Salesforce:

Its a leading cloud platform now a days. Using it you can build your on demand internet application five time faster than any other app building platform. Its built on multi tenant architecture. It provides a very good interface to build business objects, and apps. Its service is composed of two main parts
1) appExchange Directory: market place to share your app2) Force.com platform: This is the platform upon which applications are developed.
The language which is used to build the app is Apex Code. Force.com platform provides various features that makes easy to develop,maintain, publish and customize any app. Force.com platform have various features like multi tenancy that make its unique.

So this is the little bit introduction about cloud computing and cloud computing platforms. I will publish detailed blogs in future.

House Party UK My Party

Shared via AddThis

Big Commerce

Hi,

I was always wondering why interspire is not coming out with its own portal for rented shops like yahoo shops and all.. But b4 I get to know the answer of it, interspire is there with its own store online named as BigCommerce.
But my another question is still unanswered which is why this companies charge that much ki one would buy the whole shopping cart if they want to be there for even 6 months.? But we are not here to discuss that, but if one want to go for online store and want some time to find out whether its really good or not then they must have a look to this.
I would always recommend to go for interspire shopping mall edition to get the full fledge store running at own end.

BigCommerce

Hi All,

I am once again back to shopping carts.
I have just came accross the latest SooS (software as a service) based shopping cart by interspire. World class shopping cart with fullymanaged suppor and hosting.. what you need more to start of with.
If one is looking to get a kick start his/her business and don’t want to spend at one go to get licence of interspire and hosting and person to maintain, then big commerce is the best option. At the end of the day, if you feel you want to move to permentent solution, you can by exporting your store. So now you got it to test.
And what you need more, 15 days free trial as introductory offer.
I know it will be a great succes.

Hi,

Lets move to another dimention of internet.
Hosting is the biggest issue in todays world. There are number of service providers are there in market and there are number of things available in the same regards, but some thing which is most important while selecting the hosting is most of time neglacted.
It is not the space, not the band with and even not the country in which you are hosting, its the Contolpanel.
Control Panel is much more necessary because it all depends upone that how much you can control and get the statestic about how the things are going on. Also if any one can hack in or not.
I shall discuss about more such control panels in coming days in my next posts.

Hi,

In today’s world you can get different different scripts for different applications but its really hard to find a place which sell a version which is comprihancive and can act as any other website like yahoo or any other.
The major problem here is that login formatis differen and user sysnc is quite not possible between two scripts.
jfusion has arrived as its solution. One can see its functions and fetures at www.jfusion.org
We can design any jfusion plug in if you want. Do contact for that.