Showing posts with label Dev & Design. Show all posts
Showing posts with label Dev & Design. Show all posts

Tuesday, January 6, 2015

Why you should switch to GitHub's Atom text editor over Sublime text

Sublime is binary compiled for the platform. Its core is written in C/C++ and a number of its features are implemented in Python, which is also the language used for extending it. Atom is written in Node.js/Coffeescript and runs under webkit, with Coffeescript being the extension language. Though similar in UI and UX, Sublime performs significantly better than Atom especially in “heavy lifting” like working with large files, complex SnR or plugins that do heavy processing on files/buffers. Though I expect improvements in Atom as it matures, design & platform choices limit performance.

The “closed” part of Sublime includes the API and UI. Apart from skins/themes and colourisers, the API currently makes it difficult to modify other aspects of the UI. For example, Sublime plugins can’t interact with the sidebar, control or draw on the editing area (except in some limited ways eg. in the gutter) or manipulate the statusbar beyond basic text. Atom’s “closed” part is unknown at the moment, but I get the sense it’s smaller. Atom has a richer API (though poorly documented at present) with the design goal of allowing greater control of its UI. Being closely coupled with webkit offers numerous capabilities for UI feature enhancements not presently possible with Sublime. However, Sublime’s extensions perform closer to native, so those that perform compute-intensive, highly repetitive or complex text manipulations in large buffers are feasible in Sublime.

Since more of Atom will be open, Github open-sourced Atom on May 6th, 2014. (Atom is MIT licensed and the source is freely available from the atom/atom repository.) As a result it’s likely that support and pace of development will be rapid. By contrast, Sublime’s development has slowed significantly of late - but it’s not dead. In particular there are a number of bugs, many quite trivial, that haven’t been fixed by the developer. None are showstopping imo, but if you want something in rapid development with regular bugfixing and enhancements, Sublime will frustrate. That said, installable Atom packages for Windows and Linux are yet to be released and activity on the codebase seems to have cooled in the weeks before and since the announcement, according to Github’s stats. Now prebuilt versions of Atom are available for OS X 10.8 or later, Windows 7 & 8, RedHat Linux, and Ubuntu Linux.

In terms of IDE functions, from a webdev perspective Atom will allow extensions to the point of approaching products like Webstorm, though none have appeared yet. It remains to be seen how Atom will perform with such “heavy” extensions, since the editor natively feels sluggish. Due to restrictions in the API and lack of underlying webkit, Sublime won’t allow this level of UI customisation although the developer may extend the API to support such features in future. Again, Sublime’s underlying performance allows for things that involve computational grunt; ST3’s symbol indexing being an example that performs well even with big projects. And though Atom’s UI is certainly modelled upon Sublime, some refinements are noticeably missing, such as Sublime’s learning panels and tab-complete popups which weight the defaults in accordance with those you most use.

I see these products as complementary. The fact that they share similar visuals and keystrokes just adds to the fact. There will be situations where the use of either has advantages. Presently, Sublime is a mature product with feature parity across all three platforms, and a rich set of plugins. Atom is the new kid whose features will rapidly grow; it doesn’t feel production ready just yet and there are concerns in the area of performance.


READ MORE: Using GitHub's Atom text editor

Thursday, November 27, 2014

Integrating social meta tags into WordPress, Tumblr and Blogger

Integrating social meta tags into WordPress, Tumblr and Blogger

Social media meta tags make your content look better on social media. You can control how your post or update shows up in news feeds. And handsome social media updates make your content more appealing.

Meta data allows you to tell social media platforms how titles, images, and more should show up in the newsfeeds on those sites. The rel=publisher and rel=author also are on this list because those two tell Google+ to link your site to your company page and your posts to your profile, respectively. Using meta data on social media (which also shows up in searches) shows potential readers more information such as author byline, description, and images so they are more apt to click on your content.

You may have heard about the Open Graph protocol which enables any web page to become a rich object in a social graph. Facebook, Pinterest, LinkedIn, Google+, and most social websites use these Open Graph meta tags. Twitter has its own Twitter card property to get rich snippet. Google+ and Pinterest also support Schema.org meta tags but Open Graph is fine.

Following tips will help you for integrating social meta tags into popular CMS systems like WordPress, Tumblr and Blogger.

WordPress site, self-hosted or third-party hosted

The WordPress publishing platform is one of the most popular and widely used CMS systems in the world. It provides rich plugin support for additional functionality, including various plugins for social media.

Popular plugins in particular like Jetpack and WordPress SEO by Yoast make it easy to integrate your WordPress site with social meta tags.

Install WordPress SEO by Yoast, this plugin made everything easier:

Installing WordPress SEO by Yoast
  1. Go to the left navigation and click on SEO and then Social under that.
  2. In the Facebook tab, check the checkbox “Add Open Graph meta data.”
  3. Select Save Changes.
  4. Now move on to the Twitter tab and check the checkbox “Add Twitter card meta data” and save changes.
  5. Similarly add meta data for other social media.

WordPress site, hosted on WordPress.com

Automattic/WordPress supports hosting of WordPress sites on their WordPress.com domain, with over 72M sites and counting.

By default, WordPress-hosted blogs are enabled with social meta tags. WordPress automatically scans the contents of your post and determines the best meta data. Additionally, WordPress allows for easy-posting of your blog entries directly to social media via the “New Post” interface.

Tumblr

Tumblr has quickly become one of the most popular blogging platforms for content and photos, with nearly 145M sites and counting.

By default, Tumblr has social meta tags enabled, and “smart suggests” the meta data based on your post type. However, if you want to further customize the social meta tags, you can follow following process.

First add following code in the <head> tag:

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">

And place the following code before </head> section:

<!-- BEGIN TUMBLR FACEBOOK OPENGRAPH TAGS -->
        
<meta name="text:Facebook ID" content="YOUR_FB_ID_HERE">
{block:IfFacebookID}
<meta property="fb:admins" content="{text:Facebook ID}">
        
    <meta property="og:site_name" content="{Title}"/>

{block:PermalinkPage}

    <meta property="og:url" content="{Permalink}"/>
    <meta property="og:type" content="article"/>

        {block:Posts}
            {block:Text}
                {block:Title}<meta property="og:title" content="{PlaintextTitle}"/>{/block:Title}
                <meta property="og:description" content="{PlaintextBody}"/>
            {/block:Text}

            {block:Photo}
                <meta property="og:image" content="{PhotoURL-500}"/>
                {block:Caption}<meta property="og:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Photo}

            {block:Photoset}
                {block:Photos}
                <meta property="og:image" content="{PhotoURL-500}"/>
                {/block:Photos}
                {block:Caption}<meta property="og:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Photoset}

            {block:Quote}
                <meta property="og:title" content="{PlaintextQuote}"/>
                <meta property="og:description" content="{PlaintextSource}"/>
                <meta property="og:image" content="{PortraitURL-64}"/>
            {/block:Quote}

            {block:Link}
                <meta property="og:title" content="{PlaintextName}"/>
                <meta property="og:description" content="{PlaintextDescription}"/>
                <meta property="og:image" content="{PortraitURL-64}"/>
            {/block:Link}

            {block:Chat}
                <meta property="og:title" content="{PlaintextTitle}"/>
                <meta property="og:description" content="{block:Lines}{block:Label}{Label}: {/block:Label}{Line} • {/block:Lines}"/>
                <meta property="og:image" content="{PortraitURL-64}"/>
            {/block:Chat}

            {block:Audio}
                <meta property="og:title" content="{block:Artist}{Artist} - {/block:Artist}{block:TrackName}{TrackName}{/block:TrackName}"/>
                <meta property="og:description" content="{PlaintextCaption}"/>
                {block:AlbumArt}<meta property="og:image" content="{AlbumArtURL}"/>{/block:AlbumArt}
            {/block:Audio}

            {block:Video}
                {block:Caption}<meta property="og:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Video}

            {block:Answer}
                <meta property="og:title" content="{PlaintextQuestion}"/>
                <meta property="og:description" content="{PlaintextAnswer}"/>
                <meta property="og:image" content="{PortraitURL-64}"/>
            {/block:Answer}

        {/block:Posts}

{/block:PermalinkPage}

{block:IndexPage}
        <meta property="og:title" content="{Title}"/>
        <meta property="og:type" content="blog"/>
        <meta property="og:description" content="{MetaDescription}"/>
        <meta property="og:image" content="{PortraitURL-64}"/>
{/block:IndexPage}
        <!-- END TUMBLR FACEBOOK OPENGRAPH TAGS -->

For Twitter card property also place the following code before </head> section:

<!-- BEGIN TWITTER TAGS -->
        {block:PermalinkPage}

<meta name="twitter:url" content="{Permalink}"/>
<meta name="twitter:site" content="@YOUR_BLOG_TWITTER_USERNAME_HERE">
<meta name="twitter:creator" content="@YOUR_TWITTER_USERNAME_HERE">

        {block:Posts}
            {block:Text}
                <meta name="twitter:card" content="summary">
                {block:Title}<meta name="twitter:title" content="{PlaintextTitle}"/>{/block:Title}
                <meta name="twitter:description" content="{PlaintextBody}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Text}

            {block:Photo}
                <meta name="twitter:card" content="photo">
                <meta name="twitter:image" content="{PhotoURL-500}"/>
                {block:Caption}<meta name="twitter:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Photo}

            {block:Photoset}
                <meta name="twitter:card" content="photo">
                {block:Photos}<meta name="twitter:image" content="{PhotoURL-500}"/>{/block:Photos}
                {block:Caption}<meta name="twitter:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Photoset}

            {block:Quote}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextQuote}"/>
                <meta name="twitter:description" content="{PlaintextSource}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Quote}

            {block:Link}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextName}"/>
                <meta name="twitter:description" content="{PlaintextDescription}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Link}

            {block:Chat}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextTitle}"/>
                <meta name="twitter:description" content="{block:Lines}{block:Label}{Label}: {/block:Label}{Line} • {/block:Lines}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Chat}

            {block:Audio}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{block:Artist}{Artist} - {/block:Artist}{block:TrackName}{TrackName}{/block:TrackName}"/>
                <meta name="twitter:description" content="{PlaintextCaption}"/>
                {block:AlbumArt}<meta name="twitter:image" content="{AlbumArtURL}"/>{/block:AlbumArt}
            {/block:Audio}

            {block:Video}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextTitle}"/>
                {block:Caption}<meta name="twitter:description" content="{PlaintextCaption}"/>{/block:Caption}
            {/block:Video}

            {block:Answer}
                <meta name="twitter:card" content="summary">
                <meta name="twitter:title" content="{PlaintextQuestion}"/>
                <meta name="twitter:description" content="{PlaintextAnswer}"/>
                <meta name="twitter:image" content="{PortraitURL-64}"/>
            {/block:Answer}

        {/block:Posts}

{/block:PermalinkPage}
        <!-- END TWITTER TAGS -->

Blogger

Google’s Blogger is a great platform for publishing rich content. To add some social meta tags follow the following process.

First add xmlns:og='http://ogp.me/ns#' in the <HTML> tag. Note that there may already exist some code.

<HTML xmlns:og='http://ogp.me/ns#'>

And place the following code before </head> section:

<!-- Open Graph metatags -->
<b:if cond='data:blog.pageType == "item"'>
<meta content='article' property='og:type'/>
<meta content='YOUR_NAME_HERE' name='author' property='article:author'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:blog.pageName' name='title' property='og:title'/>
<meta expr:content='data:blog.canonicalUrl' property='og:url'/>

 <b:if cond='data:blog.postImageUrl'>
     <meta expr:content='data:blog.postImageUrl' property='og:image'/>
     <b:else/>
     <meta content='YOUR_LOGO_URL_HERE' property='og:image'/>
 </b:if>
 <b:if cond='data:blog.metaDescription'>
     <meta expr:content='data:blog.metaDescription' name='description' property='og:description'/>
     <b:else/>
     <meta expr:content='data:blog.pageTitle' name='description' property='og:description'/>
 </b:if> 

<b:else/>
<meta content='blog' property='og:type'/>
<meta expr:content='data:blog.title' property='og:site_name'/>
<meta expr:content='data:blog.canonicalHomepageUrl' property='og:url'/>
<meta content='YOUR_LOGO_URL_HERE' property='og:image'/>

 <b:if cond='data:blog.metaDescription'>
  <meta content='data:blog.metaDescription' name='description' property='og:description'/>
  <meta content='YOUR_BLOG_KERYWORDS_HERE' name='keywords'/>
 </b:if>
 </b:if>

<!-- You can replace following locale “British English” (en_GB) or Nepali (ne_NP) alternative with your own --> 
<meta content='en_US' property='og:locale'/>
<meta content='en_GB' property='og:locale:alternate'/>
<meta content='ne_NP' property='og:locale:alternate'/>
<!-- /Open Graph metatags -->

For Twitter card property also place the following before </head> section:

<!-- Twitter card metatags -->
 <meta content='@YOUR_BLOG_TWITTER_USERNAME_HERE' name='twitter:site'/>

 <b:if cond='data:blog.pageType == "item"'>
 <meta content='@YOUR_TWITTER_USERNAME_HERE' name='twitter:creator'/>
 <meta expr:content='data:blog.pageName' name='twitter:title'/>
 <meta expr:content='data:blog.canonicalUrl' name='twitter:url'/>
  <b:if cond='data:blog.postImageUrl'>
   <meta content='summary_large_image' name='twitter:card'/>
      <meta expr:content='data:blog.postImageUrl' name='twitter:image:src'/>
   <meta content='560' name='twitter:image:width'/>
   <meta content='750' name='twitter:image:height'/>
      <b:else/>
   <meta content='summary' name='twitter:card'/>
      <meta content='YOUR_LOGO_URL_HERE' name='twitter:image'/>
  </b:if>
  <b:if cond='data:blog.metaDescription'>
      <meta expr:content='data:blog.metaDescription' name='twitter:description'/>
      <b:else/>
      <meta expr:content='data:blog.pageTitle' name='twitter:description'/>
  </b:if> 

 <b:else/>
 <meta content='summary' name='twitter:card'/>
 <meta expr:content='data:blog.title' name='twitter:title'/>
 <meta expr:content='data:blog.canonicalHomepageUrl' name='twitter:url'/>
 <meta content='YOUR_LOGO_URL_HERE' name='twitter:image'/>
 <meta expr:content='data:blog.metaDescription' name='twitter:description'/>
 </b:if>

For Google+ and Facebook authorship include the following code before </head> section:

<!-- Facebook admins and app ID -->
<meta content='YOUR_FB_ID_HERE' property='fb:admins'/>
<meta content='YOUR_FB_APP_ID_HERE' property='fb:app_id'/>

<!-- Google authorship and publisher markup -->
<link href='https://plus.google.com/YOUR_PAGE_ID_HERE/posts' rel='author'/>
<link href='https://plus.google.com/YOUR_PAGE_ID_HERE' rel='publisher'/>

Validating

Be sure to check one of your example posts via the different social media metadata validator.

Saturday, November 22, 2014

Making fluid and responsive embedded videos

Making fluid and responsive embedded videos

A few HTML elements don’t play nice with responsive layouts. One of these is the good ol’ iframe, which you may need to use when embedding content from external sources such as YouTube and Vimeo videos.

iFrames, contain external content which cannot really be measured from the parent page. The width and height settings are necessary to define the size of the iframe, as the content inside will not help shape it (like an image would). But setting a static width and height on an element poses a problem for any type of fluid/flexible design. If the parent area shrinks in width to be narrower than the video, the video will break out, not shrink to fit.

In this post, I’ll show you making embedded video responsive using CSS, so that content such as YouTube or Vimeo video resize with the browser’s viewport. For those occasions when non-coders will be embedding video on your website and you don’t want to rely on them adding extra markup, we’ll also look at a solution that uses JavaScript instead of CSS.

The markup for embedded video

Services such as YouTube provide code that you can copy and paste into your own website to embed content. When you embed content from an external source, the code will include an iframe:

<!-- Copy & Pasted from YouTube -->
<iframe width="560" height="315" src="//www.youtube.com/embed/Y1xs_xPb46M" frameborder="0" allowfullscreen></iframe>

This iframe enables external content to be displayed on your website, because it includes a URL that points to the source of the streamed content.

However, you’ll notice that our iframe includes width and height attributes. Remove these and the iframe will disappear because it would have no dimensions. And you can’t fix this in your style sheet, unfortunately. The width attribute means that, on a screen narrower than 560 pixels, the embedded content will protrude outside of its containing element, breaking the layout.

Fortunately there are a couple of possible solutions here.

Responsive video with CSS

With Thierry Koblenz’s excellent technique, you wrap the video in another element which has an intrinsic aspect ratio, then absolute position the video within that. That gives us fluid width with a reasonable height we can count on.

<div class="video-wrapper">
  <!-- Copy & Pasted from YouTube -->
  <iframe width="560" height="315" src="//www.youtube.com/embed/Y1xs_xPb46M" frameborder="0" allowfullscreen></iframe>
</div>
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
Whatever YouTube iframe embed code you paste within the .video-wrapper, you’ll see it presented in a fluid 16:9 box.

We can again look to Thierry’s solution for adding additional CSS and imposing aspect ratio.

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.video-wrapper object,
.video-wrapper embed,  {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

Responsive video with JavaScript

The above technique is awesome, but it has several possible limitations:

  1. It requires wrapper element, so just straight up copy-and-pasting code from YouTube is out. Users will need to be a bit more saavy.
  2. If you have legacy content and are redesigning to be fluid, all old videos need HTML adjustments.
  3. All videos need to be the same aspect ratio. Otherwise they’ll be forced into a different aspect ratio and you’ll get the “bars”. Or, you’ll need a toolbox of class names you can apply to adjust it which is an additional complication.

If either of these limitations apply to you, you might consider a JavaScript solution. Imagine this: when the page loads all videos are looked at and their aspect ratio is saved. Once right away, and whenever the window is resized, all the videos are resized to fill the available width and maintain their aspect ratio.

FitVids.js

Until recently, most solutions were plugins, which are OK to an extent but can have performance issues. A popular plugin is FitVids.js, developed by Chris Coyier and Paravel.

FluidVids.js

A more current solution is to use just a script — such as FluidVids.js, developed by Todd Motto. FluidVids.js is simple to use and load faster:

  1. Download the script (ZIP) from GitHub and upload it to your server with the same folder structure that the downloaded files come in. This will place the script itself in a folder named dist.
  2. Ensure you place the script before the closing <body> tag.
<body>
  <!-- html above -->
  <script src="dist/fluidvids.js"></script>
  <script>
  // fluidvids module available
  </script>
</body>

Pass in your configuration.

// fluidvids module available
<script>
  fluidvids.init({
    selector: ['iframe', 'object'], // runs querySelectorAll()
    players: ['www.youtube.com', 'player.vimeo.com'] // players to support
  });
</script>

To add other services like SlideShare to FluidVids:

players: ['www.youtube.com', 'player.vimeo.com', 'www.slideshare.net'] // players to support

That’s all you need to do to make videos resize on all devices that support JavaScript. It works not only for YouTube, but for Vimeo and even SlideShare too. The problem, however, is that if you users don’t have JavaScript support or the JavaScript hasn’t loaded yet or JavaScript hasn’t loaded correctly, the only fallback you can use is to add the following to your style sheet:

iframe {
    max-width: 100%; 
}

This will ensure that video resizes to the width of the browser’s window. But it won’t resize the video’s height; unfortunately, iframe just doesn’t work this way. So, the video won’t break your layout, but it won’t look very good either. This is not really a good option, so if you can avoid using JavaScript for videos, it’s a good idea to do so.

Other alternative EmbedResponsively.com

If you’re developing a responsive website using a content management system, then one or more of the website’s editors will probably have to embed video at some point. You can point your editors to EmbedResponsively.com which generates responsive <embed> codes for embedding rich third-party media with one click, with CSS alone. Alternatively, you could use a JavaScript solution, to relieve nervous editors from having to add extra CSS and markup. However, as long as you can avoid this path, the better, of course.

We can just use EmbedResponsively to generate the copy-paste-code with one click.

.embed-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; max-width: 100%; height: auto; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
<div class="embed-container"> <!-- Your iframe content here --> </div>

Putting it all together

With the help of this tutorial not only YouTube or Vimeo iframe videos but you can even make other embed iframe content like SlideShare or Google Maps responsive. So let’s say we are in the position where we have lots of legacy content, which includes videos of all makes and models, and we’re redesigning our site to be fluid. The most efficient route is going to be combine everything we’ve learned in this article and put it together.

Tuesday, November 4, 2014

Inspiring Design Quotes – Wisdom from Design Legends

Inspiring Design Quotes – Wisdom from Design Legends

We all need a bit of design inspiration from time to time. If you’re stuck in a creative cul de sac, take a read through these inspiring design quotes. Real wisdom, from some of the worlds greatest designers. Enjoy, then go and create great work!

People ignore design that ignores people.

Frank Chimero

Design is what you do when you don’t yet know what you are doing.

George Stiny

The perfect time to start something never arrives.

Anonymous

Don’t just follow your dreams; chase them down, grab hold and don’t let go.

Kellie Elmore

If you can’t explain it simply, you don’t understand it well enough.

Albert Einstein

Great things are done by a series of small things brought together.

Vincent Van Gogh

We are what we repeatedly do. Excellence, then, is not an act, but a habit.

Aristotle

Think lightly of yourself and deeply of the world.

Miyamoto Musashi

If you believe you can do it go out there and do it because that’s the only way you’re gonna get it.

Harry Main

It’s not where you take things from – it’s where you take things to.

Jean-Luc Godard

We tend to forget there’s more to design than designing.

Justin Ahrens

The greatest results in life are usually attained by common sense and perseverance.

Owen Feltham

Computers are to design as microwaves are to cooking.

Milton Glaser

Nothing great was ever achieved without enthusiasm.

Ralph Waldo Emerson

Good design is all about making other designers feel like idiots because that idea wasn’t theirs.

Frank Chimero

Design is thinking made visual.

Saul Bass

Design is what you do when you want to express yourself.

Simplicity is the ultimate sophistication.

Leonardo da Vinci

Change the way you look at things and the things you look at change.

Wayne Dyer

The only way to do great work is to love what you do. If you haven’t found it yet, keep looking. Don’t settle. As with all matters of the heart, you’ll know when you find it. And, like any great relationship, it just gets better and better as the years roll on. So keep looking until you find it. Don’t settle.

Steve Jobs

It’s not whether you get knocked down, it’s whether you get up.

Vince Lombardi

Creativity is contagious. Pass it on.

Albert Einstein

The moment you declare a set of ideas to be immune from criticism, satire, derision, or contempt, {your} freedom of thought becomes impossible.

Salman Rushdie

Everything is designed. Few things are designed well.

Brian Reed

Designers are meant to be loved, not to be understood.

Fabien Barral

Design is in everything we make, but it’s also between those things. It’s a mix of craft, science, storytelling, propaganda, and philosophy.

Erik Adigard

If you’re not failing every now and again, it’s a sign you’re not doing anything very innovative.

Woody Allen

A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.

Antoine de Saint-Exupery

It doesn’t matter how many times I have to click, as long as each click is a mindless, unambiguous choice.

Steve Krug

Practice safe design: Use a concept.

Petrula Vrontikis

Every child is an artist. The problem is how to remain an artist once we grow up.

Pablo Picasso

What separates design from art is that design is meant to be... functional.

Cameron Moll

If you can dream it, you can do it.

Walt Disney

To live a creative life, we must lose our fear of being wrong.

Joseph Chilton Pearce

You can design and create, and build the most wonderful place in the world. But it takes people to make the dream a reality.

Walt Disney

Design is not just what it looks like and feels like. Design is how it works.

Steve Jobs

Fashion fades, only style remains the same.

Coco Chanel

A shoe is not only a design, but it’s a part of your body language, the way you walk. The way you’re going to move is quite dictated by your shoes.

Christian Louboutin

A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.

Douglas Adams

Good design is making something intelligible and memorable. Great design is making something memorable and meaningful.

Dieter Rams

Eventually everything connects – people, ideas, objects. The quality of the connections is the key to quality per se.

Charles Eames

Make things as simple as possible, but not simpler.

Albert Einstein

There are three responses to a piece of design – yes, no, and WOW! Wow is the one to aim for.

Milton Glaser

The public is more familiar with bad design than good design. It is, in effect, conditioned to prefer bad design, because that is what it lives with. The new becomes threatening, the old reassuring.

Paul Rand

You can have an art experience in front of a Rembrandt… or in front of a piece of graphic design.

Stefan Sagmeister

Graphic design will save the world right after rock and roll does.

David Carson

I’ve never had a problem with a dumb client. There is no such thing as a bad client. Part of our job is to do good work and get the client to accept it.

Bob Gill

It’s through mistakes that you actually can grow. You have to get bad in order to get good.

Paula Scher

If you do good work for good clients, it will lead to other good work for other good clients. If you do bad work for bad clients, it will lead to other bad work for other bad clients.

Michael Bierut

A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.

Antoine de Saint-Exupéry

Never fall in love with an idea. They’re whores. If the one you’re with isn’t doing the job, there’s always, always, always another.

Chip Kidd

But I find that for myself, without exception, the more I deal with the work as something that is my own, as something that is personal, the more successful it is.

Marian Bantjes

Digital design is like painting, except the paint never dries.

Neville Brody

Socrates said, “Know thyself.” I say, “Know thy users.” And guess what? They don’t think like you do.

Joshua Brewer

I want to make beautiful things, even if nobody cares, as opposed to ugly things. That’s my intent.

Saul Bass

Good design is all about making other designers feel like idiots because that idea wasn’t theirs.

Frank Chimero

I strive for two things in design: simplicity and clarity. Great design is born of those two things.

Lindon Leader

Content precedes design. Design in the absence of content is not design, it’s decoration.

Jeffrey Zeldman

The life of a designer is a life of fight. Fight against the ugliness. Just like a doctor fights against disease. For us, the visual disease is what we have around, and what we try to do is cure it somehow with design.

Massimo Vignelli

Think more, design less.

Ellen Lupton

Monday, September 22, 2014

The Anatomy of a Successful Responsive Website

Responsive Website

A proficient and compelling website is the frontal of your online business. Having a website for your business is best method for your users and visitors to find you.  With a website, business owners can generate direct and viral traffic from visitors and customers who want to know more about their products and services. As having a good looking and professional website is necessary for your business, at the same time you need to be sure that your website is responsive too. Responsive web design is the primary source of ultimate success of your online business.

Responsive design: getting it right

A website with a responsive web design is a website which is visible properly on all kind of mobile devices regardless of its screen size. In today’s tech era, when every day you wake up in the morning, you came to know about the new and latest trend in the web market, it becomes very challenging for every web developers and web designers to stay updated with those trends to survive in IT market with ease. One of the emerging and growing web trend in IT industry is the Responsive web design that is continuously gaining serious attention with the skyrocketing popularity of smartphones and tablets among large number of users especially youngsters and business owners.

In designer’s word, responsive web design is a specific type of web development and design that utilizes CSS3 with fluid proportion-based grids to adapt the layout of a design to viewing environment. Simply put this means that a website designer creates a site or a page that responds to the device a user is viewing the site on. So a user visiting a website on, say, their mobile phone, will see roughly the same website a person viewing from a PC or laptop. That said, more and more designers are changing the layouts so that instead of simply scaling up or down depending on what device you are using, you may see a different site completely from one device to another.

Every web designers and web developers has to take into attention the fact that users can now access internet anywhere and at any time. They are not limited to access internet from monitor or desktop only. So with the speedy and agile change from personal PCs to smartphones and tablets, it has become not only important but also necessary for any website page to resize itself in any screen shape. There has been a lot of buzz about the term ‘Responsive’. Responsive web design allow the visitors to navigate through different section of website from their handheld device with ease. Responsive web design is the concept that will let any website to embrace, resize and fit itself to cater for various screen sizes like desktop, smartphones, tablets etc., and also on the same time making sure that clients and customers can easily navigate your website.

Responsive web design will allow your target visitors to access your service and products you are offering to them from any king of device they have. Therefore we need to provide our users the best means of displaying the information on different screen sizes. Every business owner at the time of analyzing their web traffic will surely understand that about 50 percent of total web traffic to their business comes from small mobile devices. So, it becomes the single most important reason to give your website a responsive layout.

Responsive Web Design Trend

Web design encompasses many different skills and disciplines in the production and maintenance of websites. Areas of web design are graphic design (eg: logo, icons), interface (layout) design, proprietary software.

Click to Enlarge+

Responsive Web Design Trend
Image: InfoBizzs

Why is responsive design so important?

Responsive web design came about as a response to the growing popularity of portable Internet devices like mobile phones and tablets. An already fairly common and growing complaint from users of such devices was the “web’s” inability to adapt properly giving users a less-than favorable experience.

Now thanks to CSS3 and other developments users are able to enjoy their favorite websites and have access to their content on the go as well as at home. Websites are also able to serve their customers content where and when they need it, increasing ad revenue and traffic. In an increasingly mobile world you can expect to see more and more responsive web designs and, eventually, the difference between developing these and regular site will be no different.

Now let’s have a look on the several benefits of Responsive web design for your business.

  1. Drive traffic to your business from all kind of users using desktop, personal computer or any kind of mobile devices. It will increase the total percent of your business traffic by mobile audiences.
  2. Responsive web design for your business allow you to manage the complete website with one set of links which will as a result will increase your website visibility in all major kind of search engines including Google, yahoo and Bing.
  3. Improve in sales and conversion rates of your business — Responsive web design boost conversion rates which is the ultimate requirement of any kind of online business. Responsive Web design is also user and search engine friendly.
  4. Save time and money which is required on mobile website development.
  5. Responsive web design will attract more number of customers to your site and this will take your business to next level of success.

To make the responsive design for your business you need to choose a good and professional web design company that will promise to complete your project on time with reasonable budget.

The anatomy of a responsive site

This infographic features Responsive Web Design Best Practices for both web designers and web developers, including a brief history of responsive web design and some facts/figures on media consumption and mobile usage.

Click to Enlarge+ OR Download as PDF

Responsive Web Design Best Practices
Image: Magic Logix

How To Make a Responsive Website

In this world where the use of mobile devices is outgrowing the use of desktops and laptops most of us need to make sure that our websites and web products work on most mobile devices. That is to say that we need to make our websites responsive. This video is a quick primer on how to make your website responsive.

This video is made by the talented faculty and instructors at Fresh Tilled Soil Labs where they teach and give people the practical hands on design and development core skills and expertise they’ll need in the future.

Why Responsive Website is Necessary?

Responsive Website Design

Responsive design is a website that is designed to ensure that the images, structure and content remain as usual in any device. The design ensures that users get full access to the site when using their phones or tablets smaller screen. This means that a person does not have to worry about having various websites, but to ensure that the sites functions effectively on the mobile device. Majority of the people in the world conduct Google searches on their phones. This means that one can get a good experience regardless of the device sizes and make.

According to Google analytics more that 30% of the website traffic is brought about by tablets and mobile devices. Additionally, 69% of the people that own tablets conduct their shopping on their devices every month. The trend is attracting many people and there is a likely hood that by 2015 web browsing will be conducted on the mobile devices as opposed to desktops.

Responsive design also gives users better and effective experiences. For instance users don’t have to keep zooming the images and the texts on their screens but instead the images in the screen are able to adjust automatically the device’s screen. This ensures that the users can navigate and the site easily. According to research people are likely to move to other websites if the site does not open completely.

However, when a person has a good experience on a specific website with their mobile websites they are likely to use the site effectively to buy products and services from it. An effective user experience further makes communication and feedback to be efficient. It is always important to ensure that the content is accessible in an easy way and it engages the users. A fully responsive website ensures this is achieved by making sure that the users view the site in the best appropriate format for any device being used.

Responsive Web Design

A responsive website is easier to manage and very cost effective when conducting SEO campaigns as you only campaign for one website unlike in a situation where you would have to conduct separate campaigns for the desktop website and the mobile devices. It also ensures that you always stay ahead in the business as many users use mobile devices to search for commodities as well as make purchases. Time is also an important aspect that is saved because there is only one website to update, maintain and market.

This ensures time is saved and money. Responsive design increases the conversion rates, therefore, making the users happy. This is because if a website does not work on the mobile devices the users will not convert. Since a responsive design can easily adapt to any screen the developers have adequate control of all the elements that get displayed on the tablet and the phone. A responsive design also ensures that everything on the website has logical places that help visitors to find what they are looking for easily. In addition it makes sure that the main content on the page is visible without causing any strain. The site is unique and provides a visual sparkle to ensure that the customer enjoys reading the content.

Responsive design also ensures that you can carry out some high end A/B and heat mapping testing. This testing’s can be done easily by the use of software’s such as Optimizely and Clicktale. This ensures that segments user gain good idea of how the users are interacting on the website design services. This makes you to know the marketing strategies and the sales tactic that are effective and the once that are not effective. Responsive design has also been recommended by Google and actually Google prefers the design. The reasons that make Google to prefer responsive design is because it is very efficient for it to craw the site, index and then organize all its contents online.

This is because all websites have only one URL and they share the same HTML on all the devices. However, when a business has both the desktop site and a mobile site it will need to have different URL and different HTML for each. This in return forces Google to index different versions of the exact site. Moreover, Google prefers the responsive design because the content that is in only one URL and website is easier for the users to interact with, link to and share as opposed to content that is on a separate site. Optimizing segments for the mobile devices is very important as it plays a vital role in capturing conversions and visitors. This design is an effective cost effective way of optimizing sites as compared to creating separate sites for tablets, mobile and computer desktops.

Responsive design also plays an important role in helping combat the bounce rate that may be higher. Whether the website is better in search results or not the users are likely to bounce off it does not work efficiently on tablets and the mobiles. Website operators are likely to suffer from high bounce rates if they offer information that varies on their desktops and their mobile devices. A responsive design ensures that this problem is avoided by presenting the same content found on the desktop but in a more advanced functional way. This makes sure that the customers get the information they are looking for and keeps them on the page.

Responsive design websites are the best for users who traverse the internet by the use of their phones and expect to have a smooth desktop experience as well. Going responsive is the best way to ensure that visitors have the best experience on your site as well as make the most of tablet and mobile traffic. While going responsive comes with its challenges on the marketers as well as the website owners it is important to know that the future is on the mobile devices. In case you do not provide a mobiles– friendly environment for your esteemed customers they are likely to move to the competitors that own websites that are easy to operate and manage.

Responsive Web Design

Your website is no longer just viewed on a desktop anymore. It’s out there on a wide range of devices and users on these different devices all have different needs and intentions.

Ryan, from MODassic, showcases their new responsive website and the many advantages of responsive web design and shows how responsive website design can meet the needs of those different users.

Sunday, September 21, 2014

Why You Should Have Interactive Website Design?

Interactive Website Design

Interactivity means the degree of interaction between objects. In web design these objects are a client and a website. The reaction of the visual website elements on the mouse cursor moving can also be called interactivity. For example, have you ever seen a horizontal photo strip that moves right or left depending on your mouse position, or corners of the page that rise up encouraging you to turn it?

With the majority of the websites and applications being interactive, modern web designers are called upon to make a number of considerations which are drastically different from traditional graphic designers. To bridge the gap, designers called upon the discipline of interaction design. Interaction design just like user experience design has evolved to facilitate the interaction between the environment and its people. However, there is a slight difference between user experience and interactive design- interaction designers are typically concerned with the interaction between the users and the computer.

Mobile browsing has been on the increase as more consumers own smart phones and tablets, which offer convenient access to the internet. These devices have doubled the amount of time that people spend accessing the internet. As of 2013, worldwide mobile phone internet user penetration was 73.4 percent. In 2017, figures suggest that more than 90 percent of internet users will access online content through their phones.

Online retail businesses report that a third of their visitors use mobile devices. Mobile browsing has been growing rapidly and this has forced website owners to rethink their design approach. Website owners are shifting toward responsive designs to accommodate mobile browsing. Static designs are no longer effective because online users are looking for interactive websites. There are various reasons why you should have an interactive website design.

Designers Work Hard, So Users Don’t Have To

Designing (and programming, implementing, and especially testing), is a tough job as it requires mastery of a slew of technical skills. Building a super user experience may be quite difficult, and building it correctly may be too difficult for mere words to describe, but — hey — without a positive user experience your users will click away, never to return. Users should not have to spend much time learning a new system, a new lexicon, a new set of patterns and rules and iconographies, just to buy something on the web.

Establish Long-term Relationships

An interactive website design allows you to establish long-term relationships with your online users. Long-term relationships are important for a business. It is easy to sell your products and services to an online user you have engaged with on your site. Interactive designs make it easy to start conversations with potential clients and this helps to develop mutually beneficial relationships.

Wider Reach

Interactivity is one of the most significant attributes of an effective website. An interactive website design allows online visitors to participate. Websites have become more sophisticated over the years and users now expect meaningful interaction with the sites they visit. When a visitor finds what they are looking for on a site, they are more likely to stay longer and visit it frequently. If a site is interactive and offers valuable content, visitors will share the information with their networks on other sites. This is a significant advantage to a business because it gives you a wider reach.

Boost Conversion Rates

When the internet was introduced, online users browsed the web to see other people’s creations. This has changed over the years and users now want to be part of the site. They want to generate content and participate in online communities. There is a shift towards user generated content such as links, music, videos, pictures, and ratings. Online users want to feel like they are part of the website and they are making a valuable contribution. This keeps them coming back to your site and boosts conversion rates.

Better Search Engine Rankings

A mobile friendly website design makes it easy for online visitors to access information from any location. They can use their mobile devices when they are on the move. If your site allows interactivity, you are more likely to get more online visitors and this has a positive impact on your search engine rankings. People tend to visit sites that they find on the search engines. When you integrate some meaningful interactive elements into your website, this helps to excite online users. If people find valuable content on your site and they enjoy navigating through the pages, they will use it for a longer period and even include your link on other sites. You build back links naturally when online users share your links. This increases your popularity and increases your search engine ranking.

Friday, September 12, 2014

The Elements of a Creative Logo Design

The Elements of a Creative Logo Design

Any business logo design will be the visual reflection of its brand. Basically, it’s a graphical representation to show the particular selection of activities that will incorporate your opinion in the minds of your customers whilst coming across the organization. If a company is at its starting phase, the logo will highlight the types of products and services a customer should be expecting from them.

A variety of factors help with the efficiency required for your logo design, including, design, formats, and color. However today let’s talk over some definitely key elements affecting logo design of your brand.

Logo Dimension

Logo designs generally go on a two-dimensional type but a majority of logos merely pleads to be developed in three-dimensions. A two-dimensional logo makes up involving color, design, contrast, and so forth; the three-dimensional could rather be seen as sophisticated plus unexpected.

Logo Design Tips for Dummies: What your Logo Should be?

Here are the 6 qualities that every good logo should possess...

Logo Design Tips for Dummies: What your Logo Should be?
Image: Designmantic

Contrast

The design of a logo is not effective unless of course it incorporates outstanding contrast amongst a variety of factors including picture and text size, distinct colors and fonts, etc. It’s a no doubt a strong tool to design a defined and state of the art piece of work. Other than scale and color, increasing or decreasing backlighting, translucency, consistency and interaction can also create contrast in a logo.

Color Emotion Guide

Scientists have been studying the way we react to colors for many years. Certain colors make us feel a certain way about something. As long as the designer knows what these colors and emotions are, the designer can use that information to help present the business in the right way. These are not hard and fast rules but smart designers use the information to their clients advantage.

This fun infographic lays out the emotions and qualities that well known brands like to be known for. The color psychology is only one part of the puzzle but I think you will agree it is a very important part of it. The Logo Company put together this amazing graphic on the color emotion guide and it is fantastic!

Color Emotion Guide
Image: The Logo Company

Icons

Creative Logo designers generally apply the concept of symbology provide a feeling of belonging. By using it continuously, your consumers will start to see your brand name in the reflection of symbols used in the logo. It will position your brand well in the customer’s mind and they will be able to recall it increasingly.  Accumulation of constantly applied designs can serve as a familiar plus unique brand’s artwork expressions. This can be an incontrovertible fact that brands which has been doing great to create a sense belonging are related to buying develop the maximum value above time.

7 Deadly Sins of Logo Design

Ever wondered what you should not be doing to your brand’s logo? Here are the 7 big no-nos of logo design that are a MUST to avoid...

7 Deadly Sins of Logo Design
Image: Designmantic

Typography

Typography used in a graphical representation in all kinds, types and appearance are embedded with amazing features among all of them. This contributes to develop grace when used in advertising as this feature favor some logos and people who consider it a pain have never come out from the old age trend of using Times New Roman. When you require a straightforward, and clean mark, go for the typeface which suits your organization the best. It should go with the company or brand image; otherwise it would be a disaster.

7 Deadly Sins of Typography

Study the infographic that follows and seek refuge from these 7 deadly sins in the name of all that is pure and holy! All be warned!

7 Deadly Sins of Typography
Image: Designmantic

Customization

In the current fast-paced world, customization is now a fundamental portion of virtually any intellectual and creative venture. Throughout the year a company is involved in denoting brand name individuality, and this idea remains to be while on an experimental level. Brand names usually are repairing their own logo designs to evolve to the new idea. Various brands using the same logo tend to personalize it in their own way to stand out from other house of brands. A logo design can be customized by means of symbology or color depending on the requirement of each brand. It feels like a latest concept surfing in the design market, plus terrifying the old ones using the same logo for all brands.

A Successful Logo Design Is…

An infographic outlining the most important elements of a successful logo design. Memorable, Adaptable, Social & Descriptive

A Successful Logo Design Is…
Image: Boutique By Design

Tuesday, September 9, 2014

Syntax Highlighting With Prism

Syntax Highlighting With Prism

UPDATED VERSION: Syntax highlighting with prism.js


Last time I was searching for a good syntax highlighter for beautifully viewing the code snippets on my blog post. Among different syntax highlighter I found out Prism by Lea Verou is pretty awesome.

Yet not sure what I mean by a syntax highlighter or what it does? Here’s an example of JavaScript snippet highlighted with Prism:

<script language="javascript">
  var today= new Date()
</script>
      ....
<body onload=alert(today)>

Prism is a light weight and works on most of all the platform whether it is your own hosted site or any other popular CMS platform like WordPress, Blogger or Tumblr.

Installing on your page

To install Prism on your webpage you need to download the files prism.js and prism.css choosing your desire theme and required settings.

Here, JavaScript file prism.js is your settings and CSS file prism.css is your theme styles.

Now, upload the two files in your hosting site.

Then, you will need to link the prism.css and prism.js files in your index page. Example:

<!DOCTYPE html>
<html>
<head>
 ...
    <link href="themes/prism.css" rel="stylesheet" />
</head>
<body>
 ...
    <!-- after all your content -->
    <script src="prism.js"></script>
</body>
</html>

Remember that to correctly work, prism.css file should be include before the </head> tag and prism.js before </body> tag.

Installing on WordPress

Easily highlight your code on WordPress with WP PrismJS. Simply download & activate the plugin and a new icon on your TinyMCE editor will appear. Click on it and you will be able to enter your indented code; choose the language; specifying the maximum height of the code window and the filename.

Installing on Blogger/Tumblr

To install Prism on your Blogger/Tumblr blog you need to upload prism.css and prism.js files in other file hosting sites like Google Drive or Dropbox because we cannot host file in the Blogger/Tumblr site. Then as same process above go to template edit and inculde prism.css file link before the </head> tag and prism.js file link before </body> tag.

Remember that hosting your file on other site like Google Drive you should set the file for public view and need to link direct link like http://googledrive.com/host/YOUR_FILE_ID/. Public viewing link and direct link may vary according to the different sites.

If you don’t like to upload the file and want to use Prism default theme then you can include the following two files link to install Prism:

<link href="http://prismjs.com/themes/prism.css" rel="stylesheet" />
<script src="http://prismjs.com/prism.js"></script>

Using Prism

First thing you have to escape HTML character < to &lt; and > to &gt; to highlight syntax with Prism. For Example:

&lt;pre&gt;
&lt;code class="language-javascript"&gt;
&lt;script&gt;
        var today= new Date()
  &lt;/script&gt;
          ....
  &lt;body onload=alert(today)&gt;
&lt;/code&gt;
&lt;/pre&gt;

You can use tools like QuickEscape tool to escape HTML character.

Then,

You have to wrap your code inside the <pre> and the <code> tag defining the necessary class="language-XXX".

For example to show HTML snippet define class="language-markup"

&lt;pre&gt;
&lt;code class="language-markup"&gt;
  <--! YOUR HTML CODE HERE -->
&lt;pre&gt;
&lt;/code&gt;

For CSS snippet define class="language-css"

&lt;pre&gt;
&lt;code class="language-css"&gt;
    /* YOUR CSS CODE HERE */
&lt;pre&gt;
&lt;/code&gt;

For JavaScript snippet define class="language-javascript"

&lt;pre&gt;
&lt;code class="language-javascript"&gt;
  // YOUR JAVASCRIPT CODE HERE
&lt;pre&gt;
&lt;/code&gt;

With Prism by help of these few easy steps you get a nice highlighted code snippet, isn’t it awesome?

Saturday, September 6, 2014

The Essential Elements of Graphic Design

The Essential Elements of Graphic Design

In the world graphic design has become one of the most important things. This is because it is very key in printing and web designing. Graphic design can be used in number of ways for  product/service promotion, such as posters, banners, newsletters, logos, brochures, flyers, business cards, office stationery such as cash sale  etc.

In order to come up with a well paying design one should consider facts and follow them. These points are related to colors, layout, texture and the size of the designing format.

Layout:

The layout is the most important part of the graphic design for it is the basis upon which all the other details are added. A good layout should be well balanced, neat  and put in a way that the reader will be able to read with ease. One is supposed to put the text in its appropriate position in order to make it nice.

Color:

One is supposed to come up with the appropriate corporate color in which it should not be very repetitive. The colors to be used are either in the background, the texts and also the objects. Things such as banner should be legible from a far since it is used to advertise, promote or talk of an event. Being placed at a strategic position it should be read with ease by all the passers by, Newsletter on the other hand should be arranged in a way that the reader will be able to read with ease. Appropriate colors should be used for different texts to make the page attractive to the reader. While on the logo should be designed in a way that they will be understood with ease and should communicate. It should not have many color for it will look bulky.

The 10 Commandments of Color Theory

Here come the 10 cardinal rules of color scheming to help you save time when choosing colors. These essentials serve as bedrock to the color-verse.

Click to Enlarge+

The 10 Commandments of Color Theory
Image: Designmantic

Texture:

Two thing one is supposed to consider in the texture is the way the text will look like and on what type of the paper the text will lie. It is in this that the designer will be able to explain to the client the texture of the design. The  texture therefore can entail background where it should be simple with the color which is upto the event. The way also the text and the background ought to look on the material should be attractive to the reader. Take for instance a banner where by the background color and the image colors should not contrast.

Size:

Size is also another thing to consider most when coming up with the design. It is where size of the entire layout is shown and also the size of the text should vary with the size of the entire layout. The size of the text differs with the entire size of the design. The font size and the size of the layout should be well balanced considering the header and bodice.

Font:

The font describes the company or corporate. Some of the companies have a specific font and font colour which should not be changed. One should be careful when selecting the font of the text or the header as well as in the logo.

The 10 Commandments of Typography

The infographic below illustrates the 10 cardinal rules that could be followed as quite the basics when it comes to selecting fonts.

Click to Enlarge+

The 10 Commandments of Typography
Image: Designmantic

Bonus: The 10 Commandments of Logo Design

This visual below offers a holistic snapshot of the basic principles of logo design with the help of applied examples to make things easy peasy to grasp!

Click to Enlarge+

The 10 Commandments of Logo Design
Image: Designmantic

Just for Fun: The Anatomy of a Graphic Designer

A humorous look at what makes a graphic designer, a graphic designer.

The Anatomy of a Graphic Designer
Image: Glantz Design

Friday, July 25, 2014

Busting Common Web Design Myths

We take all those common web design myths that you have heard & bust them! Find out the truth with our top 8 myths.

Click to Enlarge+

Busting Common Web Design Myths
Image: BaseKit

Sunday, July 6, 2014

The Evolution of Web Design

An amazing infographic on how Web Design has evolved across the years. Right from the first website.

The Evolution of Web Design
Image: Clixlogix

Friday, July 4, 2014

The History of Typography

Here is a brief history of typography describing how it first came into being and evolved into what we see today with the passage of time...

Video: YouTube, Forest Media

Thursday, June 26, 2014

The Importance of White Spacing in Web Design

We throw in a lot of cool elements when designing a website. We often forget the one aspect in web designing that has a lot of advantage and gives a better look to the overall appearance- The white Space! It is also known as negative space. But there is a lot of positive stuff that goes around this negative spacing. Let us discuss some here.

What is Whitespace?

You would think that whitespace does not need an introduction since the name suggests what it is. But whitespace does not necessarily be white. The name comes from the olden days of graphic design where almost every creation was done on white paper. It is nothing but the empty space around and between the elements of a design or a page layout. This can include images, margins, and space between columns, space around graphics and the space between lines of type.

Why is Whitespace important?

Though white space is technically nothing but just a blank, we should learn to give more credit to it. Whitespace has a lot of good things to offer. The number one advantage will be the sophistication and class it brings to the web page. What would you prefer- a crowded web page or a neat web page which is pleasant to look at? When the user opens a page, he/she should feel comfortable to read it and stay on that page for a while. If you are designing a web page packed with really good information but not spaced properly, there is no point designing one. While presenting something on paper, the space is limited and you want to make the most out of the space available because here more space costs money. But if you think for a second and leave a little more spacing then it shows you are more concerned about the content rather than the cost of designing a page and it looks neat and readable.

What else can Whitespace do?

It also offers other benefits such as,

  • Better clarity and readability
  • Comfortable reading experience
  • Professional Appearance
  • Main focus on Content
  • Sufficient separation for important elements
  • Overall appearance

Big branded companies like Pottery Barn and Apple leave ample spacing in their web sites to make it look attractive and classy. These websites usually receive lot of traffic compared to a cluttered website.

On a smaller level white space plays an important part when it comes to the design, formatting and usability. Adding more white space to a web page makes the content stand out and it is easily comprehensible. There is no rule book on how much white space should be used on a website. Each design is unique. So the amount you use will vary for each design. It also depends upon the developer’s perception of spacing and the final product of the website. At the end of the day, to get it right you just have to try it again and again, perform some trial and error methods till you get it right and then incorporate it on the web page for a clean, stylish look.

This infographic discusses what whitespace is and it’s important role in web design.

img alt="The Importance of Whitespace in Web Design" border="0" src="http://googledrive.com/host/0B6ktZzNhkH6JMmd2a29fMGoxRWc/importance-whitespace-web-design.jpg" title="The Importance of Whitespace in Web Design" />

Image: Hall Internet Marketing Home

Wednesday, June 18, 2014

Social Media Sizing Cheat Sheet 2014

If you are an inbound marketer, seo expert, web designer, blogger or a small business owner then you probably use social media everyday. Here is a super useful infographic that will make your job easier! This is the updated version of Social Media Sizing Cheat Sheet – 2014.

There are many other sizing infographics, cheat sheets on the web but most of them are very complicated. So this is a clean and a plain version which includes only the most used sizes of Facebook, Twitter, Pinterest, Google Plus.

Social Media Sizing Cheat Sheet 2014
Image: Infinpixels

Thursday, June 12, 2014

Why is PHP a Better Option for Web Design?

PHP Web Design

When it comes to web designing, PHP is one of the most favored tools owing to a number of reasons. PHP comes up with certain unique features that make it one of the most adored, preferred as well as appropriate options for the purpose of web designing. The language itself thus, has made PHP developers highly sought-after professionals in the fraternity of web development as well as designing companies. Let us discuss the efficacy of PHP as a web designing tool.

First of all, PHP development does not take much of a time when compared with other tools as the language requires a much lesser number of coding, thus making the task less tedious. The language also proves to be extremely useful as well as effective, especially when it comes to CMSs like WordPress, Drupal, Joomla and so on, which are of late so much popular among the customers.

There is stiff competition out there in the market in the world of website designing or development, especially with so many companies joining the bandwagon. Hence, in order to survive this rigid competition and to make things in a bit different way, companies are coming up with sites that are not only visually appealing but SEO friendly as well. This is to make sure that these sites help in bringing more and more business leads along with greater revenue. Here is where PHO scores over other languages. The language is astoundingly compatible with SEO when compared to other designing methods or languages.

The language is designed to seamlessly integrate as well as coordinate with various visible applications and this is a very pertinent dynamics, especially taking into view today’s business requirements. The language is also great when it comes to building its own memory, for an efficient and prompt use down the line.

PHP is also capable of working on a wide range of operating platforms as well as environments, including the MS Window, Linux, etc. and this makes the language extremely desirable in today’s context.

You will be able to find a fairly large community of PHP supporters as well as discussion groups and these groups help in solving issues whenever they crop up. The issues these groups sort out include bugs, problems with codes as well as information. All these increase the credibility of the language, making it a safe as well as a stable platform to use, especially for the beginners.

In PHP, you get a language that is designed specifically for the purpose of web designing with an inbuilt integration option with one of the most popular open source MySQL database. PHP has the following unique features that make the language, such an indomitable web designing language:

It is easy for the beginners:

PHP is the most ideal language for the beginners, who will just have to add some tags with the already existing HTML files, and follow it up by uploading them to the server and see the end results. Besides, the dynamic typing and the associative arrays make the language easier for the beginners.

It is user friendly

When compared to other solutions, there is no need of compilation in PHP. Hence, all that is needed is writing the script and uploading the script to the server and then updating the browser.

Besides, PHP comes up with an integrated support for databases of MySQL and that makes it easier to use the database with MySQL functions with no need to install additional drivers. Since it is a much older language, there are a number of web-oriented frameworks as well libraries available. Also, since it has been round the corner for such a long period (since as early as 1995), it performs seamlessly on Linux as well as Windows along with a wide range of other web servers. Also, when it comes to finding hosting with pre-installed PHP, there is no problem.

You can hire developers from top php web development companies who can help you build web application within allocated budgets and time schedules.

Saturday, May 10, 2014

New Changes to the Facebook News Feed

New Changes to the Facebook News Feed

Facebook has once again made some more changes to the ever-evolving News Feed. Users will notice a lot of differences between the feed they knew six months ago and the feed that they see today. This is because Facebook is trying to make sure you are seeing more of the content that is actually of interest to you while weeding out the things that are not.

On average, there are 1,500 stories that could show up in your personal News Feed every day. With Facebook's algorithm, though, you only see about 20% of them. Updates to the algorithm plus new designs come together to make a more personalized News Feed for each individual user.

So, what are the new changes you will be seeing?

Videos on Auto-Play

Several months ago, Facebook did some test runs of auto-play video ads. Now, over the next few months, users will begin to see more and more of these auto-play videos, including brand advertising, in their News Feeds.

The videos will play automatically, both on the desktop and mobile versions of the social network. There is no sound to the videos unless you click on them, which saves you from having to endure a cacophony from multiple videos playing at once.

Auto-play videos only include those uploaded directly to the site, not those shared from third-party sites like YouTube.

Bigger Images

Everyone knows that posts that include images get the most engagement from social media users. Now, the images that you carefully curate to go along with a post will get even more notice because they will appear larger in New Feeds.

Images now appear the width of the New Feed, making them much more impact and hard to pass up.

Quality Content

In order to make sure users are seeing more quality content in their News Feeds, Facebook changed the algorithm to allow more current events and news to appear. This change might make the social network a competitor for Twitter in the breaking news market and the conversations that come with it.

Increased Brand Content

Facebook has made some other tweaks to allow more brand content to reach a broader audience. Brands can tag one another in posts, allowing them to reach people who are following the other brands.

Reappearing Content

Users will also notice that they see the same posts in their News Feed even after they have read them. This is a way for Facebook to make sure that you are seeing content that could be a hot topic among their friends and family.

Fewer Spam Links

One of the things that irritates social media users most is clicking on a link and being taken to a page that is full of ads. Another new part of the algorithm helps prevent links to ad pages that are deemed spam by Facebook from popping up in News Feeds too often. They will still be there, but at least an attempt is being made to limit them for us.

There will always be changes made to our favorite social networks in an attempt to make sure users are getting the best experience. What changes are you happy to see on the News Feed?

Image: ReadWrite