Sunday 30 April 2017

Popular Design News of the Week: April 24, 2017 – April 30, 2017

Every week users submit a lot of interesting stuff on our sister site Webdesigner News, highlighting great content from around the web that can be of interest to web designers. 

The best way to keep track of all the great stories and news being posted is simply to check out the Webdesigner News site, however, in case you missed some here’s a quick and useful compilation of the most popular designer news that we curated from the past week.

Note that this is only a very small selection of the links that were posted, so don’t miss out and subscribe to our newsletter and follow the site daily for all the news.

Google is Crushing the Internet

 

The Salary of UX Professionals

 

13 Terrible Web Trends from the 90s, and How to Recreate Them

 

What is a Beautiful User Experience?

 

6 Website Design Trends

 

10 Things Designers Say that Normal People Don’t

 

Pixels Are Dead

 

Top 10 UI/UX Design Instagram Accounts for Design Inspiration

 

Gmail: An Unsolicited Redesign (#1)

 

100 Ways to Be More Creative

 

Your Body Text is Too Small

 

25 Useful Web Animation Tools 2017

 

PNG or SVG, Which is the Best in 2017?

 

How We Made Our Website Offline First

 

Moodica – Oddly Satisfying Videos to Relax your Brain

 

10 Best New Web Design Tools for April 2017

 

Designers (Mostly) Love HuffPost’s Bold Redesign

 

The Graphic Designer Reworking Fashion’s Most Iconic Logos

 

Developer/Designer Page Layout Concept

 

Cartoon Reveals the Importance of Completing Side Projects

 

How to Price a Logo Design

 

Pirate Bay Founder Launches Anonymous Domain Registration Service

 

This Crazy New Interface Makes Zero Sense–For Now

 

Polaris, Shopify’s Design System

 

Want more? No problem! Keep track of top design news from around the web with Webdesigner News.

LAST DAY: 10 Full Font Families and Bonus Design Extras – only $9!

Source

from Webdesigner Depot https://www.webdesignerdepot.com/2017/04/popular-design-news-of-the-week-april-24-2017-april-30-2017/

Saturday 29 April 2017

Comics of the Week #387

Every week we feature a set of comics created exclusively for WDD.

The content revolves around web design, blogging and funny situations that we encounter in our daily lives as designers.

These great cartoons are created by Jerry King, an award-winning cartoonist who’s one of the most published, prolific and versatile cartoonists in the world today.

So for a few moments, take a break from your daily routine, have a laugh and enjoy these funny cartoons.

Feel free to leave your comments and suggestions below as well as any related stories of your own…

Mixed emotions

Trust issues

 

The irony

Can you relate to these situations? Please share your funny stories and comments below…

Feather Toolkit: 250+ Hi-Res Feather-Themed Photos, Backgrounds, Templates – only $10!

Source

from Webdesigner Depot https://www.webdesignerdepot.com/2017/04/comics-of-the-week-387/

Friday 28 April 2017

The Designer’s 4 Step Guide to Securing WordPress

WordPress has become the world’s most popular CMS. Because it is so popular, this is even more of a reason to enhance WordPress security if you are using it for your website. Most people understand how to make their page itself secure, but if you are not focusing on the the security of your WordPress site by limiting access to important files and folders, then you are still at risk. To do this you will not be making any changes to WordPress itself, but rather altering how WordPress runs on a server and how much access users have to its files.

Step 1: Limiting access to wp-includes folder

WordPress sites are comprised of a series of files and folders, each with their own unique URLs, which means if someone were to type in the correct URL they could access or alter sensitive files that run your site. One of the most common targets for this kind of hacking is the wp-includes folder, so we are going to add some additional code to the server configuration file to beef up security and prevent these kinds of threats. When we are done with this, anyone attempting to access these files gets redirected back out.

To start you will want to open up the .htaccess file for your site. You can do this through any text editor, doesn’t matter which because all we are doing is adding a little snippet of code to the file. You will notice that the file already has code in it, generated by WordPress. In one of the early lines of code, you will find a line that says # BEGIN WordPress. Directly above this code, we are going to add the additional lines of code, which will fortify the site’s defenses by restricting access to the wp-includes folder.

# Blocking web access to the wp-includes folder
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^wp-admin/includes/ - [F,L]
RewriteRule !^wp-includes/ - [S=3]
RewriteRule ^wp-includes/[^/]+\.php$ - [F,L]
RewriteRule ^wp-includes/js/tinymce/langs/.+\.php - [F,L]
RewriteRule ^wp-includes/theme-compat/ - [F,L]
</IfModule>

Afterward, you simply need to re-upload the file to the server and you’re done. While the changes here seem minor it can have a large impact on your site’s defenses. Because many of the advanced functions of WordPress are located within the wp-includes folder, they are a major target for hackers to go after. With these changes implemented, when users attempt to access this folder, they will instead be automatically redirected to the front page of your site.

Step 2: Protecting wp-config.php

Our next step to fortify WordPress security is to limit access to the wp-config.php file. When you first created your WordPress site, you had to create a database name, username, password, and table prefix, which is contained in the wp-config.php file. The reason you want to protect this file is because it contains the information WordPress needs to talk to the database, and in the long run, control your site.

To protect your wp-config.php file, you will just need to do a few simple steps. First, we will want to open up the .htaccess file again. Next, we will want to copy the snippet of code below and paste it into our .htaccess file just like we did with step 1.

# Blocking web access to the wp-config.php file
<files wp-config.php>
order allow,deny
deny from all
</files>

Finally, save and re-upload the file.

Step 3: Defending the .htaccess file itself

As you can see with steps 1 and 2, the .htaccess file can be intrinsic to defending your WordPress site from malicious external threats. That is why in this step we are going to protect the .htaccess file itself, preventing hackers from removing the protections we’ve already put in place.

To do this we will again open up the .htaccess file. Next, insert the code below in to the existing code.

# Securing .htaccess file
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</files>

And with this simple addition, your .htaccess file is protected from outside threats.

Step 4: Removing file editor access

For the final step we are going to be denying hackers access to one of the most destructive tools they could get their hands on: the Editor inside the WordPress dashboard. It allows you to edit your theme files, which is helpful but can be dangerous. If a person, other than yourself would get access to this, then they could change your code and break your site.

With this project, we will be removing the  Editor from the WordPress dashboard. Rather than accessing the file through WordPress, I recommend that you access it through an ftp client such as FileZilla, which is better for site integrity.

So to do this project we will first want to open up the wp-config.php file. Once we have that open, we are going to go to the end of the code, here you will find the text “That’s all, stop editing! Happy blogging.”. Right before this text we are going to add the code below to remove file editing entirely from WordPress.

define('DISALLOW_FILE_EDIT', true);

Once you have added the code, save the file and re-upload it to the server. Now your WordPress site is safe from anyone gaining access to your site and trying to manipulate the code.

Know that your site is safe

If you follow all of these steps, your site should be much safer. By reducing the amount of access hackers have to the files important to running your site, you have increased your WordPress site’s overall security.

Create Mockups and Wireframes in Minutes with NinjaMock – only $29!

Source

from Webdesigner Depot https://www.webdesignerdepot.com/2017/04/the-designers-4-step-guide-to-securing-wordpress/

Huffpost Unveils New Design

The Huffington Post, now officially referred to as “Huffpost” has a completely new site design to go with its name and logo change. It has added a fair splash of black to go along with the white and green. Gone are the classic heading styles as Proxima Nova takes their place in the headlines, and in the body text. They’re really only using one typeface for the whole thing.

If you’ll recall, Huffpost used to have a distinctively newspaper-style feel to it. This is because it launched back in the days when larger, more mainstream media outlets still held sway. You know, before they started freaking out about Youtubers. Back then, making your website look like a newspaper was almost the only way to get taken seriously.

Heck, the Drudge Report did it. And for some reason, the rather small hero image and red headlines of Huffpost’s old hero elements always reminded me of their competitor across the political aisle.

The Old Huffington Post

All of that is gone now, replaced by a design that, when I first saw it, made me think of tabloids first and foremost. Upon further reflection, it feels like a cross between the tech blog and tabloid aesthetic, but with a super serious color scheme. It’s an odd duck.

Let’s be clear: I don’t think it’s a bad design. I even kinda like it. But is it the right design, and is this the right time for it?

The New Huffpost

Reportedly it’s their attempt to appeal to a more working-class demographic, while they bank on their name brand to keep existing readers on board. Huffpost’s own post on the subject doesn’t do much to confirm or deny this theory.

I can’t help but recognize the influence of sites like Buzzfeed and Upworthy. I’d say that it’s more likely that Huffpost wants a piece of the “viral content” crowd. That crowd does include working-class people, but it includes pretty much every other class too. Most importantly, it includes a younger class of readers.

it’s more likely that Huffpost wants a piece of the “viral content” crowd

However, they don’t want to go full tabloid to do it, as evidenced by the more serious, almost Silicon Valley tone of their UI. Now, is this going to work out for them? That’s the big question, isn’t it. The demographic they are targeting is just old enough to have read real newspapers, but young enough to wholeheartedly embrace new media. Moreover, they’re likely to have read the Huffington Post on and off for a while, and so have a vested interest in the brand. The general impression? That the new design feels “cheap” like the budget wasn’t there this time.

Knowing what we know about web design, they probably spent a lot more money on this redesign than people think. But this new design may make long-time readers worry about the future of the site. Meanwhile, readers who maybe never have touched a real newspaper themselves might feel right at home. It’s one of those instances where only time will tell.

Create Mockups and Wireframes in Minutes with NinjaMock – only $29!

Source

from Webdesigner Depot https://www.webdesignerdepot.com/2017/04/huffpost-unveils-new-design/

Thursday 27 April 2017

Deal: Lifetime Access to DesignBold’s Huge Library

Every designer needs a kickass toolbox to fall back on. Whether you’re an accomplished designer who’s looking to save time, or a newbie still honing their skills, a great big pile of design assets will bail you out of many a tight corner.

That’s why we’re delighted that our sister-site, MightyDeals.com, has arranged an incredible value deal with DesignBold. DesignBold is an amazing service offering high-definition templates for all kinds of design projects.

With access to DesignBold’s library of goodies, you can whip up graphics for social media accounts, blog posts, banners, adverts, fliers, whatever you need, in mere minutes.

DesignBold’s library includes 6,000 design templates, and over 200k high-quality stock photos. The simple drag and drop production process includes a magic resize feature that switches your design to different formats—Facebook post to Instagram image, for example.

The new share feature means you can collaborate on design by inviting clients, or colleagues to view your project.

This sensational MightyDeal would normally cost $1140, but for an extremely limited time you can get lifetime access to this essential design library, for just $37. That’s an incredible 97% saving off the regular price! Head over to MightyDeals.com to grab this offer today.

LAST DAY: Massive Discounts on Stock Photos – 67% off!

Source

from Webdesigner Depot https://www.webdesignerdepot.com/2017/04/deal-lifetime-access-to-designbolds-huge-library/

Microinteractions: Designing with Details

“The best products do two things well: features and details. Features are what draw people to your product; details are what keep them there” says Dan Saffer. The importance of details can’t be over-emphasized. Details make users love or hate an app or website. Microinteractions are those details. They might be easily overlooked in the global design scheme, but they actually hold the entire experience together.

In this article, I’ll explain what is a microinteraction, why they are important and provide some great examples.

What is a Microinteraction

Microinteractions are subtle moments centered around accomplishing a single task. Almost all applications around us are filled in with microinteractions.

The most well-known example of a microinteraction has existed long before computers were ever invented. The on/off switch is often the first microinteraction people encounter with a product.

Some other examples of specific microinteractions include:

  • The vibration notification together with silent mode icon on display when you switch an iPhone to mute.
  • The pull-to-refresh UI pattern. By connecting the user’s desire of finding more content with the action of refreshing, the experience becomes more seamless.


Image credit: Ramotion

  • The ’like’ button on social networks which highlights changes by using interactive animations. Such feedback informs users that they are in the list of those who liked the post.


Image credit: Dribbble

Why They Work

In short, microinteractions improve the UX by making the user interface less machine and more human. A lot of times we think about look & feel and how it relates to design. When we think about microinteractions, they pretty much make up a balance how users feel about the product, service or brand. Microinteractions fine-tune human-centered design by:

  • Providing immediate feedback —  Visual feedback appeal to the user’s natural desire for acknowledgement. The user instantly knows their action was accepted, and they want to be delighted by a visual reward.
  • Acting as facilitators for interaction — Microinteractions have the power to encourage users to actually interact. They can guide users in how to work with the app.
  • Bringing delight — Microinteractions are the perfect chance for a little extra delight in the design without detracting from main experience.

Additional benefits

Because microinteractions are brief in nature, they must be designed for repeated use. Well-designed microinteractions are able to create:

Habit loop

Microinteractions are the key components of habit loops. Habits are formed when people perform the same actions repeatedly. Typical habit loop consists of three elements:

  1. Cue — Trigger that initiates action
  2. Routine — In response to the cue, you perform an action
  3. Reward — A benefit you get from completing the routine, reason for completing action

The stronger the reward, the more stronger the habit becomes.

Facebook’s notification about new friend request is a good example of habit loop: red badge and whitened icon (cue) indicate there’s a new request, which makes the user click the icon (routine) to see information about the person (reward). After a while, users automatically click on icon when they see the red badge.

Signature moments

If done well, microinteractions can be signature moments that increase customer loyalty. Signature moments are microinteractions that have been elevated to be part of the brand. Think about Facebook’s Like button. It becomes natural part of Facebook interface. If Facebook suddenly remove this feature, users will notice it and will think that the app is broken.

Identifying Opportunities

Part of the beauty of microinteractions is that they can be inserted in a variety of places, around any potential action. Microinteractions are good for:

Highlighting changes

Microinteractions can direct user attention. In many cases animations are used for attracting user’s attention to important details (i.e. notifications).


Image credits: Dribbble

Minimizing user effort

Autocomplete is a great example of microinteraction. Typing has high interaction cost; it’s error prone and time consuming even with a full keyboard (and even more so on a touch screen). Autocomplete helps the user to provide the right answer faster and without typographical errors. As you type each letter, the system will make its best guesses as to the words you’re trying to find.


Image credits: fancy.surge.sh

Providing feedback to show what’s been accomplished

Microinteractions can reinforce the actions a user is performing. By following the principle “show, don’t tell”, you can use animated feedback to show what’s been accomplished. In Stripe’s example, when the user clicks “Pay”, a spinner briefly appears before the app shows the success state. Checkmark animation makes user feel like they easily did the payment and users do appreciate such important details.

Provide status information

The first usability heuristic principle by Jakob Nielsen states: the system should always keep users informed about what is going on. Typing indicator in chat is a great example of microinteractions that provides status information. It appears on your buddy’s screen while you’re composing a message in chat.


Image credits: Dribbble

Validate user data

One of the most important, and often overlooked aspect parts of form design is error handling. It’s human nature to make mistakes though, and your form probably isn’t exempt to human error. Users dislike when they go through the process of filling out a form only to find out at submission, that they’ve made an error. This is where validation microinteraction plays it’s part in a user-friendly form. Real-time inline validation immediately informs users about the correctness of provided data. This approach allows users to correct the errors they make faster without having to wait until they press the submit button to see the errors. When done right, it can turn an ambiguous interaction into a clear one.

Credits: Dribbble

Conclusion

Design is in the details. Even minor details deserve close attention, because all these little moments make up the feel, they come together to form a beautiful holistic product.

“The difference between products we love and those we simply tolerate are often the microinteractions we have with them.” — Dan Saffer

If you care about user experience, you must care about microinteractions. Because your product is only as good as the least microinteraction that people have with it. 

LAST DAY: Massive Discounts on Stock Photos – 67% off!

Source

from Webdesigner Depot https://www.webdesignerdepot.com/2017/04/microinteractions-designing-with-details/