You are Unregistered, please register to gain Full access.    


Reply Post New Thread
 
Thread Tools Display Modes
Old November 19th, 2009, 05:48 PM   #1
Sidra
Administrator

 
Join Date: Nov 2009
Location: ♥ ♥ In My Baby's Heart ♥ ♥
Posts: 885
Thanks: 86
Thanked 144 Times in 117 Posts
Default 10 Tips to Create a More Usable Web

Whether it’s your portfolio, a blog, a marketing web site, or a collection of games, we all want to attract visitors to our website and to ensure that they have a pleasant experience.

Usability measures the level of a user’s experience and can be characterized by how easily a given task can be completed; whether it’s done with prior knowledge, or by having the user learn a new way to interact. I think Jakob Nielson probably explained it best when he said:

“Usability is a quality attribute that assesses how easy user interfaces are to use. The word “usability” also refers to methods for improving ease–of–use during the design process.”

In this article I hope to give you some form of a usability checklist, covering topics from form design to simple navigation tips that you can apply to any Web project.


1. Creating active navigation

Letting the user know what section of the site they’re in, or what category they’re navigating through can be give a huge usability boost to any site. Active navigation is one of those usability concepts that are almost automatic at this point. And we all have our own way of creating it.

The ideal situation for creating active navigation is to do it server-side, because it massively cuts down on the amount of HTML and CSS needed. If generating an active state server-side isn’t an option, [.::Hidden Content::. Click Here To Register] to style each navigation element directly is also a fine choice.

As a third option, you can easily create active navigation with JavaScript.

Your active navigation state should always be different from your hover state.





2. Clickable labels & buttons

When you take the time to mark up a form properly a user can click a label to activate the associated form element and there’s a really easy way to show it off. This is a great piece of functionality built right into HTML. Unfortunately, very few users know about this natural gem of user interface.

Letting the user know a label is clickable only takes a line or two of CSS (depending on how you write it) to change the cursor from the default text insert to a more clickable and friendly pointer.



By now everyone’s well aware that submit buttons are clickable. I’ve always thought it was weird that this – obviously clickable – element doesn’t use the same cursor as a link. So I like to apply this bit of CSS to buttons as well:

label, button, input[type="submit"]{cursor:pointer;}



3. Linking your logo

Not linking a logo to your site’s home page is one of the more frustrating things I’ve come across on the Web. I can’t understand why someone wouldn’t so this. It’s so easy, and by now, it’s safe to say, users expect it.

Linking your logo is so common nowadays that many sites are finding that having a link labeled “Home” isn’t useful anymore, as users are just clicking the logo to navigate to the home page.

Sites such as Facebook, track user clicks by adding the “ref” parameter to each navigational element. Below is an example of how Facebook links their logo:





4. Increasing the hit area on a link


About a year ago, Ryan Singer from 37Signals wrote an article about how they padded link targets for better mousing in Basecamp. This is another small usability trick that you can use by simply adding some padding around links to make the clickable area larger.

This is a great addition to any site and it can help prevent misclicking on a link, which can often be a little frustrating. It also helps a lot in mobile Web design, where users click with their fingers and really need that extra large hit area on a link.






5. Adding focus to form fields

Applying focus to a form field is a growing trend in UI design. It lets the user know that what they just did caused something to happen (did that make sense?). It’s a quick and easy way to pass useful, unobtrusive information onto the user. Saying something like: “Hey! You just clicked here.” Can be very useful.






6. Providing a useful 404 page

Making the user feel comfortable is very important and displaying a big Apache error message on the screen isn’t the best way to accomplish that. A useful 404 page can go a long way and it doesn’t have to contain the numbers “4″ or “0″, as they aren’t very helpful to anyone other than the developer. Besides this, no one really needs to know the error code for anything that happens behind the scenes. Users just want a site to work the way they expect it to.

On the off chance a user does find themself on a “Page not found”, it’s much more helpful to lead them somewhere where they might be able to locate the information they’re looking for, by providing some apologetic text, a search box, or suggest some possible destinations. But try not to put the blame on the user for landing on a wrong URL.

Blogussion wrote a great article about creating an informative 404 page that lists some very good tips and even some code for those WordPress users among us.






7. Using language to create a casual environment

Writing on the Web is a big topic right now. It’s like we’re going down some giant checklist dealing with issues: HTML, CSS, progressive enhancement, accessibility, writing for the Web, and the all encompassing “Web standards”.

We’re hearing a lot about writing on the Web and it seems to keep changing. From the days of Steve Krug telling us to cut our content in half to using bulleted lists wherever possible.

Now we’re all supposed to write like we’re talking to a friend and it all goes back to making the user feel like they’re in a comfortable environment. When you keep the copy on your site casual, it makes a user feel less stressed, so even when they do encounter something confusing they can still feel a sense of relaxation and informality as they search for their answer.






8. Applying line height for readability

Line height is one of the things that can be directly inherited from physical media, such as books and newspapers. These sources have been around for hundreds of years and have had plenty of time to master readability and line height. So the next time you’re stuck on this, don’t be afraid to crack open a textbook and check it out.

This is an aspect of Web design that can be easily overlooked and easily abused. I usually start off with a line height of about 1.4em and adjust it from there, based on the design and content.






9. Utilizing white space to group elements

Grouping items together is one of the easiest ways to show association. You can do it with images, borders, or just plain old white space. Using white space to group elements creates natural associations between related elements that, even when read at a glance, can be easily picked up by the user.

As the eye scans a page, a user will naturally read the headings first. This happens a lot with top 10 lists (::ahem:. Hopefully, the content is interesting enough to grab some attention and entice the user to read a little more closely. You push users in the right direction by designing your content in a way so that things that are related actually look like they’re related.






10. Being accessible

By being accessible, I don’t mean Section 508 and ADA compliance. Accessibility, in this case, means being there for your users when they have a problem (responsiveness).

If usability is all about trying to make sure your users don’t get frustrated and leave, responsiveness is your last line of defense against losing that user to one of the millions of competitors who are a short click away.

Ultimately, you can do all the testing that you want and follow all of the usability advice that you can get your hands on, but everybody is different. Users will get confused and lost and eventually need some help. The amount of time you leave a user confused can be the difference between someone who will come back and someone who won’t.

When talking about accessibility, many people default to a conversation about the visually impaired, but accessibility extends far beyond that. For example, you have to make your web site accessible to users with bandwidth restrictions (dial-up connections, cell service, slow networks) and older browsers (some companies won’t let employees upgrade browsers).

If we do our best to make our sites as accessible as possible and respond quickly to questions we can create an overall experience that will leave the user constantly wanting more.

Customer service matters… even on a blog.
__________________

...volim te Em...uvijek i zauvijek muci buci...




Click on the sig to start earning too...
Sidra is offline   Reply With Quote
Old March 26th, 2010, 08:50 AM   #2
champssmith
The Quiet Type
 
Join Date: Mar 2010
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: 10 Tips to Create a More Usable Web

1. Add only those features to your website that are relevant and related to your business. Adding a feature that pleases you but does not carry any meaning for your customers is a waste of time and bandwidth.
2. Be judicious in the use of bandwidth-consuming audio and video features. Though they add appeal to your website, they can considerably increase the time your web pages take to load, irritating customers and hindering usage of your website.
3. Avoid using flashing icons and text as they distract visitors and be detrimental to your website image. Though some web designers suggest that they add appeal to your website, always focus on impressing customers through products and services instead of computer effects.
4. Use clear and to-the-point page titles. Though some readers may appreciate clever and witty titles, most prefer simplicity. Visitors see web page title in search results; clear effective titles can significantly increase the traffic coming to your website.
5. Putting an advertisement on the first page before your true content appears can greatly annoy customers. Though some web designers advocate that displaying the ad benefits your business and attracts customer attention but these pages, more often than not, discourage website usage and negatively affect your reputation.
__________________
alarm clocks
champssmith is offline   Reply With Quote
Old May 14th, 2010, 05:17 AM   #3
AndreClark99
The Quiet Type
 
Join Date: May 2010
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: 10 Tips to Create a More Usable Web

The points that you have mentioned are really important at the time of design.Site design is quite important factor for site,the points which I want to add here are:
Make the site professional(Use such colors and fonts with which the sites looks like so)
Use the javascript which seems userfriendly to all users.
Have Clear Navigation
Powerful search Option(if you have used)
__________________
Web Design New York
AndreClark99 is offline   Reply With Quote
Old August 26th, 2010, 09:02 AM   #4
garryamin
The Quiet Type
 
Join Date: Aug 2010
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: 10 Tips to Create a More Usable Web

These all points which you are mentioned over here is really great. In these there are so many things which is really great it will uses very user friendly to the users and it also can have clear navigation to all the users. Though some readers may appreciate clever and witty titles, most prefer simplicity. Visitors see web page title in search results; clear effective titles can significantly increase the traffic coming to your website.
__________________
abendkleider
garryamin is offline   Reply With Quote
Old September 3rd, 2010, 05:05 AM   #5
smritipakar
The Quiet Type
 
Join Date: Sep 2010
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: 10 Tips to Create a More Usable Web

It is very nice that you had posted the tips for creating the usable web which is very useful and helpful for us ,it is very simplest way to create every one can create this as they want.
__________________
Bankruptcy
smritipakar is offline   Reply With Quote
Reply

Bookmarks


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:15 AM.


DravAlley® Copyright ©2009 - 2010
Green Web Hosting! This site hosted by DreamHost.