Full On Design

Berkshire Based Web Development

 

Usability

Are tags on a blog post a waste of time?

I recently received a question regarding why I have taken down the tags on my posts. The reason was because watched a video from google (Also embedded below) which made me wounder how much they are benefiting (and being used by) my users. After a brief test (I watched how many people were using the tag pages) I found that very few users actually were using them.

The best way to summarize what I found would be:

For every 246 human users clicking a link on a page, 1 would be clicking a tag link.

Making Zebra Stripes with CSS3

Zebra Stripping is the technique of having different colours per each line on a list. It generally is considered to help users read large tables of information; however there is evidence suggesting the effectiveness of zebra stripes is somewhat overrated. Having said that, in CSS3 it’s very easy to implement so it’s worthwhile adding.

To add Zebra Strips to a list, all you need to do is adding the following pseudo-class to the end of the CSS element you wish to edit:

ul#example_list li:nth-child(odd) {
 background-color:#FFF;
}

Read the rest of this entry »

5 Tips for Starting a Website

Here are a few quick and easy tips to remember about starting a website, which should make your website more successful.

1. Quality is better than Quantity

This tip can be put in several contexts. Content wise, if you have thousands of pages essentially saying “I’m great” in thousands of ways you have wasted your time creating them. Instead make a single easy to find page, which engages the user quickly and gets to the point.

Traffic wise, it’s better to have a small audience which engages with your content (or will pay for it) then a large audience who do not engage with your content and end up just increasing server costs. A notable example of a Company which has decided to focus on serving the 10% of their audience who will pay for content is News Corp.

2. Start Small

When you start you may want to do everything under the sun. Unfortunately in most cases this leads to websites stalling in development. For example many websites spend years “Under Construction” and when they are finally released their product or service is outdated or uncompetitive.

Read the rest of this entry »

CAPTCHA Based On Image Orientation

A few months ago 3 Google employees explored an innovative approach to CAPTCHA (What’s Up CAPTCHA? A CAPTCHA Based On Image Orientation). Essentially they suggested that having a user orientate an image into its upright position is easier for users (typing difficult to read text can be problematic) and harder for computers.

Computers find it hard to figure out what this is
A computer finds it really difficult to know if this is correctly orientated.

Here is a version I wrote which to can use on your website.

View Demo Download

This script makes use of jQuery to allow the user to rotate the images and a little PHP to check the image was rotated into the correct position.

5 Awful 1.0 Ideologies (Which people still believe)

Here are ideologies from the Web 1.0 era which moron “webmasters” (I use this term sparingly) seem to still use. In most cases it just makes a website annoying and difficult to use.

1. “If there is automatically playing music and videos, it will get a users attention”

Unfortunately not. All this does is aggravating users who are startled by an unknown (and unwanted) audio source. This will obliviously lead to users closing your web browser just to stop the annoying voice. In a recent piece of research by Full On Design in regard to what people like and dislike about websites, one respondent said when asked about automatically playing sales pitches:

I hate it when some annoying sales crap comes up, as it interrupts my music or podcasts [...] normally I would instantly close the website which is to blame.
Anonymous Respondent

Read the rest of this entry »