Ayodeji Onibalusi – Web Design Ledger https://webdesignledger.com By Web Designers for Web Designers Fri, 09 Oct 2020 09:33:56 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://webdesignledger.com/wp-content/uploads/2015/08/cropped-Web-Design-Ledger-512x512-Pixel-32x32.png Ayodeji Onibalusi – Web Design Ledger https://webdesignledger.com 32 32 4 Web Design Hacks You Can Use to Enhance Your Website on a Budget https://webdesignledger.com/4-web-design-hacks-you-can-use-to-enhance-your-website-on-a-budget/ https://webdesignledger.com/4-web-design-hacks-you-can-use-to-enhance-your-website-on-a-budget/#respond Fri, 09 Oct 2020 09:33:45 +0000 http://webdesignledger.com/?p=49787

web design hacks

Image credit

Having a functional, usable, and super fast website doesn’t have to cost an arm and a leg.

As a web designer, you can use a few pieces of code or some minor tweaks to ensure a much faster and better appealing web design.

Without having to fork out thousands of dollars to a designer, and without having to change the underlying infrastructure of your website, here are four simple web design hacks that can enhance your website today:

  1. Use HTML5 DOM Storage (Instead of Cookies) to Ensure a Faster Website 

local storage

Image Credit

Depending on how big a website/web page is, it “costs” quite a bit of data and bandwidth to load that website when you rely only on cookies. When this website is loaded repeatedly for a lot of users, depending on the server it is hosted on, the result can be a slower website (due to increased strain on available server resources) and increased hosting costs.

Often, this is because of how cookies are used: cookies are generally only necessary when there is a need for client-server communication between a user’s browser and your server.

If there’s no need for a user’s browser to interact with your server before the user experience is fulfilled, you should consider using DOM storage instead of cookies.

DOM Storage can take the following forms:

  • sessionStorage in which data is stored in a user’s browser for the current session
  • localStorage in which data is stored in a user’s browser without an expiration date

You generally want to focus on localStorage. With this, data is stored in the user’s browser and won’t be deleted even if they close their current browsing session. This will reduce server connection requests and make your website a lot faster for the user.

So how does this work? Assuming you want to store the “name” value in a user’s browser, for example, you will have:

// Store 
localStorage.name = “Firstname Lastname”; 

To retrieve the value:

// Retrieve 
document.getElementById(“result”).innerHTML = localStorage.name;

To remove the value:

localStorage.removeItem(“lastname”);

What if you want to check if localStorage is available? You can use:

function supports_html5_storage() {
try {
return ‘localStorage’ in window && window[‘localStorage’] !== null;
} catch (e) {
return false;
}
}

  1. Achieve Better Image Styling by Using the <Picture> Element

Image credit

In a world that is heavily reliant on images — research shows that our brains process images a lot faster than text — being able to effectively manipulate images is one of the key advantages you can have as a web designer; and this goes beyond looking for the best photo editing app out there today.

Being able to properly style images is a web design super power for a few key reasons:

  • It makes your web design a lot faster since you’re able to control when and how images should load.
  • It gives you a lot of flexibility when it comes to which image/version of your design users should see depending on their device.
  • It allows you to serve different images/image formats for different browser types.
  • It allows you to save money you’d have otherwise spent creating different design versions with different image elements.

So how do you go about achieving this? By effectively leveraging the HTML <picture> tag.

Here’s an example code:

<picture>
<source media=”(min-width: 600px)” srcset=”img001.jpg”>
<source media=”(min-width: 250px)” srcset=”img123.jpg”>
<img src=”img234.jpg” alt=”Header” style=”width:auto;”>
</picture>

In essence, the above code involves three images; the original “img234.jpg” which is displayed. Under certain conditions, however, other images could be served. For example, the code says “img001.jpg” should be served for devices with a minimum width of 600px, “img123.jpg” should be served for devices with a minimum width of 250px. You could add more lines of code to specify more possibilities.

Some sub-elements and attributes that can be used for this tag include:

  • The <source> subelement to specify media resources.
  • The <img> subelement to define an image.
  • The srcset attribute that is used to specify different images that could be loaded depending on the size of the viewport; you use this when dealing with a set of images as opposed to just one image (in which case you use the src attribute).
  • The media attribute that the user agent evaluates for every source element.
  1. Enable GZIP Compression via .htaccess to Boost Site Speed

Image credit

No matter how well-designed a website is, it won’t make much of a difference if the website is slow.

This is why it is important to make sure you enable proper compression to minimize the number of files that have to be loaded and as a result get a website speed boost. The best way to do this is via GZIP compression.

You can enable GZIP compression by adding the following code to a web server’s .htaccess file:

<ifModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes

mod_gzip_item_include file .(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*

mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>

If your web server doesn’t have .htaccess, there are also instrunctions for NGINXApache, and Litespeed.

  1. Combine Fonts to Spice Up Your Design

Typography is generally believed to be the most important part of a design, so the fonts you use will go a long way to influence how your design is perceived.

So much has been written about selecting fonts, so I won’t be covering that again in this article. One hack I’d like to recommend you give a shot, however, is combining multiple fonts.

You can combine two, three, or more fonts to make your web design look a lot more appealing. Fonts can be combined in a logo, layout, or the actual web design itself, combining fonts can go a long way to make your website look different.

That said, there are a few rules you might want to stick to if you want to get results from combining fonts. These include:

  • Choosing fonts from the same superfamily. This is especially important if you’re a beginner designer or not familiar with how to pair fonts.
  • If you’re not sure where to start, you might want to start by pairing a serif font with sans serif and see how that looks.
  • Consider the flow of content on your web design when combining fonts — since fonts influence content readability, you want to make sure that the fonts you use match the attribute of the message that will be displayed and as a result flows.
  • You also want to make sure that the fonts you pair contrast with each other — this is one of the reasons why pairing serif and sans serif might be a good place to start. Contrast can be achieved through size, style, spacing, and weight.

]]>
https://webdesignledger.com/4-web-design-hacks-you-can-use-to-enhance-your-website-on-a-budget/feed/ 0
4 Web Design Principles You Should Never, Ever Violate https://webdesignledger.com/4-web-design-principles-you-should-never-ever-violate/ https://webdesignledger.com/4-web-design-principles-you-should-never-ever-violate/#respond Mon, 21 Oct 2019 08:30:49 +0000 http://webdesignledger.com/?p=48917 Web design is both a science and an art. While you could be very talented and creative when it comes to web design, there are scientific principles you must never, ever violate. For example, do you know that there is a right and a wrong way to go about redesigning a website — and that […]]]>

Web design is both a science and an art. While you could be very talented and creative when it comes to web design, there are scientific principles you must never, ever violate.

For example, do you know that there is a right and a wrong way to go about redesigning a website — and that there is a principle you must never violate? Snapchat wouldn’t have suffered badly after its redesign if it operated in accordance with this principle. Do you also know that you shouldn’t just design CTAs because you like a color, or because a particular color performed really well according to an article comparing the performance of different CTA colors? Instead, there is a principle you must follow.

While there are many web design principles you should gradually familiarize yourself with, there are four key principles you must never, ever violate as a web designer. The principles are listed below:

Principle #1: Fitts’ Law

In the most basic sense, Fitts’ law states that the time it will take a person to move a pointer to a target area will be determined by the distance to the target divided by the size of the target. Consequently, a small target size over a long distance leads to poor UX, a big target size over a long distance leads to better UX, and a big target size over a short distance leads to the best UX.

Fitts law

Image Credit

When you design important elements in violation of Fitts’ law, it becomes increasingly difficult for users to interact with key elements in your design and conversion offers. 

The core lesson is this: when designing elements that will require quite some distance to interact with, make them bigger. If your elements cannot be bigger, then try to reduce the distance required by a user to locate them.

Principle #2: Law of Neural Adaptation

There has been a lot of debate in the web design world about the use of color when it comes to CTAs; in particular, designers are crazed about whether the color red, or blue, or orange is the best when it comes to CTAs, but it wouldn’t really matter once you understand the law of neural adaptation.

In essence, the law of neural adaptation states that we eventually tune out stimulus after repeated (or long) exposure to it. For you as a web designer, this affects your use of color. For example, if you designed a long sales page with the blue color scheme in which most of the elements are blue, using a blue CTA as well will result in poor conversions. This is because users are already accustomed to the blue color and are less likely to pay attention to the blue CTA; it doesn’t stand out to them and as a result is ignored.

The solution is simple then: use a color that contrasts with the main color of your design. In our example, a site that uses a blue color scheme that then uses an orange CTA is likely to perform better. This is because the orange color is different from the main color scheme used on the site — users are yet to adapt to it — and it is likely to stand out and be noticed when it is suddenly introduced.

The comparison of website builders in the screenshot below is a very good example that illustrates this point. The site generally uses a blue color scheme but uses an orange CTA that stands out and is easily noticeable.

neural adaptation example

The lesson for you as a web designer is simple: pay attention to neural adaptation and learn to make use of the power of contrast when designing key elements. Important elements of your web design should use a different color from that of the main color scheme to help them stand out.

Principle #3: Hick’s Law

If you want to design websites that convert, your website must be designed with an understanding of the principle of choice. More importantly, you want to understand Hick’s Law and design your website based on it.

Hicks law

Image Credit

Named after British psychologist William Edmund Hick, Hick’s law states that the amount of choice a person is given will logarithmically influence how long it will take the person to reach a decision: in basic terms, increasing the number of choices presented to users will logarithmically increase their decision time and decreasing the number of choices will likewise decrease users’ decision time logarithmically.

While it might be a bit difficult to truly understand this concept just yet, take a look at the following interesting facts:

  • A one-second delay in how long it takes a page to load will result in a 7 percent decrease in conversions.
  • Removing just one form field can boost conversions by up to 50 percent.
  • 60 percent of online job seekers abandon a web form due to its length or complexity.

As you can see from the above statistics, true to Hick’s law, increasing the number of your form fields will increase the time required to complete the fields and bring about a resulting drop in conversions while decreasing the number of your form fields will reduce the time required to complete the fields and bring about a drop in conversions.

As a web designer, you should avoid violating Hick’s law by limiting the choices presented to users when designing options that will give them choices that they have to act on.

Principle #4: Weber’s Law of Just Noticeable Difference

While, as web designers, we’re very familiar with more than a few instances of backlashes as a result of a web design change, perhaps no web design woe stands out in recent memory like that of Snapchat.  

Snapchat’s redesign was such a failure that it got public condemnation from highly-influential celebrity and one of its most high-profile users, Kylie Jenner, resulting in a $1.5 billion loss in Snapchat’s value in just one day!

What web design principle did Snapchat violate to bring about such wide public rebuke? It is Weber’s Law of Just Noticeable Difference.

In Weber’s law of just noticeable difference, “just noticeable difference” refers to the minimum amount by which stimulus intensity must change before it can be perceived by the senses. In other words, if the change is barely noticeable then there won’t be a reaction; if the change is too drastic, however, there could be a backlash.

For you as a web designer, the key lesson is to embrace an iterative approach to web design: spread out your design changes and introduce them gradually until users have a completely new design that they gradually grew accustomed to. Depending on the size of your audience, making design changes that are too drastic can easily backfire.

Ayodeji Onbalusi is the founder of digital marketing agency Effective Inbound Marketing and online reputation management agency BoostMyMedia.com. He’s an experienced content marketing strategist and can be reached via LinkedIn.

]]>
https://webdesignledger.com/4-web-design-principles-you-should-never-ever-violate/feed/ 0
5 Design Hacks Guaranteed to Put Your Conversions on Fire https://webdesignledger.com/5-design-hacks-guaranteed-put-conversions-fire/ https://webdesignledger.com/5-design-hacks-guaranteed-put-conversions-fire/#respond Tue, 17 Sep 2019 07:27:39 +0000 http://webdesignledger.com/?p=48824 If you want to increase ROI from your website, you can go about it in two ways: increase traffic or increase conversions. It is much easier to increase conversions, however. Depending on what you do, it costs little to nothing to increase conversions and the resulting increase can have a compounding effect. The best way […]]]>

If you want to increase ROI from your website, you can go about it in two ways: increase traffic or increase conversions.

It is much easier to increase conversions, however. Depending on what you do, it costs little to nothing to increase conversions and the resulting increase can have a compounding effect. The best way to increase conversions, by far, is by tinkering with your design; if done the right away, there are design hacks that can give your conversions an immediate boost.

Simple actions like tweaking the color of your CTA, tinkering with the default option in your design, and literally using a “compromise” can go a long way to boost your conversions. Below are five design hacks guaranteed to boost your website conversions:

1. When Designing CTAs, Always Make Sure They Contrast WithYour Site’s Color Scheme

When designing a page, it is important to realize that there’s no one-size-fits-all format or color for a CTA. You might have read one of those articles in which a CTA was successful because it uses the color red, or the color green, or the color blue, or any other “special” color. More often than not, these articles are missing a key fact: the CTA worked because it contrasted with the site’s color scheme.

Take a look at the following example from one of the most popular case studies on CTA design:

The study concluded that the red CTA outperformed the green CTA, and as such red “beats” green! When you pay careful attention, however, you realize that the color scheme of the page used the color green. As such, the color green will blend in while the color red will stand out — making the color red more likely to convert. This is in line with a principle of psychology known as “sensory adaptation.”

When designing CTAs, make sure your CTAs use an entirely different color that contrasts with the actual color scheme of your page. When you do this, your CTA will stand out and become more noticeable, and your conversions will improve.

2. Use The Bandwagon Effect to Indicate that You Are Popular

The “bandwagon effect” occurs when there is mass embrace of an idea that might ordinarily have been ignored due to the fact that a lot of other people are doing it. When this effect comes into place, it doesn’t really matter whether people agree with the idea — they are going to subscribe to it simply because a lot of other people are doing so.

There have been several mainstream examples of the bandwagon effect, including the hit K-Pop music video Gangnam Style. Even though the video originated from South Korea, it quickly became such a big hit and was on everybody’s lips; people were singing in Africa, Asia, and all over the world, regardless of whether they liked pop or South Korean music. Everybody began to sing it to appear cool and socially relevant, and it quickly became the first Youtube video to reach 1 billion views.

Then there’s also the popular yanny or laurel audio clip that trended and pretty much broke the Internet.

That’s the bandwagon effect in action. People join not because they are interested in a concept or agree with it. They join because a lot of other people are involved.

There are many ways you can integrate the bandwagon effect into your design to boost conversions:

  1. Highlight major media mentions/industry recognitions above the fold of your design. The following screenshot shows an example from Website Setup.

The “Mentioned on” section features prominently on the homepage and communicates that top publications like Forbes, wikiHow, Entrepreneur, and Moz (individually read by millions) have endorsed the website. That automatically communicates popularity, and makes people more likely to follow.

  1. Showcase key metrics (subscriber count, traffic figure, sales, or other important metric). The following example from Problogger shows how that works. As a blogger looking for a blogging community to join, realizing that over 300,000 bloggers are in a community makes it a lot more attractive.

3. Leverage the Default Effect to Boost Sales and Conversions

One of the most powerful design hacks you can leverage to boost conversions is the default effect. The default effect refers to people’s tendency to reflexively go with the default choice, and so many studies have shown just how powerful this can be.

In a particular experiment, Walt Disney found that by changing the default choices in kid’s meals to swap out soda for juice and french fries for fruits and vegetables, it was able to automatically result in kids consuming 21 percent fewer calories and 44 percent less fat. Vanguard was also able to double participation in employee retirement plans by opting people in for the plans by default and giving them an option to opt out rather than opting them out by default and requiring them to opt in.

How can this be used in your design?

Checkboxes, form fields descriptions, and placeholder content can be effectively used in such a way that what you really want people to do is included by default — and they have to take an extra step to opt out if they are not interested, rather than being opted out by default you having to prompt them to opt in.

4. Understand the Power of the Middle/Compromise Option in Web Design

When given extreme options, many people are likely to go for an intermediate option or what they feel is a compromise between two options.

For example, if given three packages with the costs below:

  • $100
  • $50
  • $10

Many people will go for the middle option (the $50 option) instead of the cheapest or the most expensive. This is known as the “compromise effect.” To really leverage this effect to boost your conversions, you can take the compromise effect not just figuratively but also literally. The below example is courtesy of Aha!.

As you can see, the middle option isn’t just a compromise between the two extremes, it is also specially designed and highlighted in a way that it sticks out.

When designing pricing pages and options for people, you want to design the option you really want people to select such that it is literally placed in the middle. Not only does this draw more attention to it, but it draws special focus on it as a clear compromise between the other options and as a result makes people more likely to select.

5. Optimize Your Design For Speed

In an age of rapidly declining attention spans, it goes without saying that every design changes should be made with speed in mind.

Here are some key facts you want to take note of:

  • A simple one second delay in how long it takes for your design to load can make conversions to suffer. Even longer delays will be more detrimental.
  • Search engines use a page’s speed as one of the major factors when determining how to rank it.
  • 47 percent of people expect a web page to load within 2 seconds.
  • 40 percent of people will abandon a website that takes longer than 3 seconds to load.

In essence, speed shouldn’t be a compromise when making design changes. Rather, actions taken to optimize your design for speed in and of itself can go a long way to boost your conversions.

Ayodeji Onbalusi is the founder of digital marketing agency Effective Inbound Marketing and online reputation management agency BoostMyMedia.com. He’s an experienced content marketing strategist and can be reached via LinkedIn.

]]>
https://webdesignledger.com/5-design-hacks-guaranteed-put-conversions-fire/feed/ 0