Tag-Archive for » Better «

How to Create a better FAQ page for end users

FAQ (Frequently Asked Question) pages have become commonplace on many websites for many reasons. The main, is that they offer a way to provide support, most commonly, customer support, without having to re-iterate solutions to common problems. For larger companies, a good FAQ page can even have an effect on the amount of support staff that are needed to be hired, yet browsing the internet, I continually find FAQ pages to be neglected, and a navigational nightmare. Similarly,Googlefor some articles on FAQ page design, and you’ll find near to nothingthat’shelpful.

While designing a recent project in Photoshop (a software sales theme), I decided the support area was something I wanted to get right, with the focus falling heavily on the FAQ page. I wanted to get a feel for how I wanted it to work, and so I got thinking; What is it that the end-user wants when they arrive. I came up with these thoughts,

  • Ease of reading – the hierarchy of the text needs to bedistinct
  • Organization – questions should be split intocategories
  • Navigation – finding their way to the information they want should be made easy, and quick

With these three points in mind, I came up with a tidy, and importantly clean FAQ page concept, the demo of which can be found below. I’m going to talk you through how it was made, and teach you how to build it yourself.

Click this link for a demo of the FAQ page we are going to make. You can also download the source code here.

Tutorial Requirements

This tutorial assumes you are fairly comfortable using the following languages

  • Html
  • Css
  • jQuery

Step 1 – Structuring our Html

Our html is split into two main sections. Within our wrapper, we have a primary column, and a sidebar column.

<div id="wrapper">
	<div id="primary></div> <!-- Main content column -->
	<div id="sidebar"></div> <!-- Sidebar Column -->
</div>

The primary content column is where we are going to split our questions into simplecategories. Each category will have a title, a list of the questions with links, and then the questions split up using a definition list. The markup we are looking for goes like this. (This shows a category with two columns)

<h3 id="1">Lacus pulvinar
<ul class="section_menu">

	<li><a href="#1_1">Lectus massa adipiscing, mattis. Turpis integer massa.</a></li>

	<li><a href="#1_2">Integer enim montes mauris, arcu est.</a></li>
<!--<span class="hiddenSpellError" pre=""-->ul>
<dl class="faq">
	<dt id="1_1">Lectus massa adipiscing, mattis. Turpis integer massa.</dt>
	<dd>Ultricies in mus, magna rhoncus augue, nec magnis facilisis integer ut pellentesque aliquam sit! Enim odio, porta augue, sed turpis dolor ultrices porttitor arcu massa cum elementum hac in vel, magna magnis, enim scelerisque? Amet aliquam, magna dis porta platea. Cras aliquet. Arcu mid eros aenean parturient cras ac egestas tempor? Lundium parturient dapibus, ridiculus ridiculus dapibus! Quis eros amet.</dd>
	<dt id="1_2">Integer enim montes mauris, arcu est.</dt>
	<dd>Et ridiculus vut dis vel integer pid? Adipiscing nec tristique dictumst tristique duis rhoncus sed, scelerisque. Porta, diam augue vel augue porta enim. Et! Tristique montes. Auctor! Pid tristique purus montes. Quis? Sit, enim. Egestas! Tristique amet mattis adipiscing, proin elit adipiscing integer! Enim, odio. Etiam ac, nunc est purus turpis. Nunc! Pid cras scelerisque mid habitasse. Cum magnis.</dd>
</dl>

It is important that you match up the navigational links for each category of questions with their ID’s. Notice that the first question in this category has an id of “1_1″, and the link the first question has a href of that id. This is important in solving our navigational problems for the user.Similarly, notice that the category title has a numerical id, to show that this is the first category. These id’s need not be numerical, they can be whatever you want, as long as they are unique to the category / question.

Moving onto the sidebar, this is where navigating the bigger picture comes into place. We’ve linked up out category questions, but how to users navigate to the categories themselves? Through the sidebar is how.

Within the sidebar, we are going to include a header, and another navigational menu linking to our categories. You can build upon, this of course, and add whatever you want to your sidebar, possibly a quick contact form, or support contact details.

<div id="sidebar">
	<h3>Select Category</h3>
	<ul class="section_menu">

	<li><a href="#1">Lectus facilisis vel</a></li>

	<li><a href="#2">Vut magna</a></li>

	<li><a href="#3">Lacus pulvinar</a></li>
	</ul>
</div>

Step 2 – Creating our layout and typography with Css

First off, we want our FAQ page to look universal in all browsers, so as always we will apply a css reset. We also want the FAQ page to be easily readable, and look stunning yet simple. For this I’ve used a modified version of the text.css that comes with 960.gs, instead using Myriad Pro, and Helvetica as our fonts. Since this section of css is large, and very basic, you can copy and paste it from here.

Starting off with our basic styles, we are going to create our layout columns, and center our page in the middle of our window.

/** Center our page in the middle of the window **/
div#wrapper{
	width:960px;
	margin: 0 auto;
	position:relative; /** Important later on **/
}

/** Give our primary column a width and float it to the left width a right margin **/
div#primary{
	width:720px;
	margin: 20px 40px 0 0;
	float:left;
	display:inline;
}

/** Position our sidebar to the right of the primary content bar **/
#sidebar {
  	left:760px;
  	position: absolute;
}

You’ll notice that we have absolutely positioned our sidebar rather than float it to the left of our primary content column. This is important for something special we are going to do with our sidebar later on.

Now it’s time to start adding some subtle styling to our page content to bring it up to standard and make viewing it extra eye pleasing. We’ll start off with two basic styles on our h3 and a tags.

/** Give our category headers room to breath **/
h3{
  	padding-top:30px;
}

/** Color our links blue **/
a{
	color:#0986e3;
	text-decoration:none;
}

/** Add a hover effect to links **/
a:hover{
	text-decoration:underline;
}

You’ll have noticed some of the class names I dropped into the html when we created it. These include section_menu and faq. They’re used to style our navigational menus (sidebar included), and our questions themselves.

/** Styling the navigational menus by adding a subtle background, and padding **/
ul.section_menu{
	background:#ededed;
	padding:20px 10px;
}

/** Style our faq questions **/
dl.faq{
	margin-bottom:30px;
}

/** Make the question itself stand out **/
dl.faq dt{
	font-weight:bold;
	color:#000000;
	padding:25px 0 5px 0;
	display:block;
}

/** Add a divisor below the question answer **/
dl.faq dd{
	padding-bottom:25px;
	border-bottom:1px solid #cccccc;
	display:block;
}

Step 4 – Creating a static sidebar with Jquery

Now we are going to start using Jquery toimprovethe usability of our page. Currently it looks nice, and works well for a page without any javascript, but we can make it so much better! Start by including jquery in the had of your page. We are going to load it directly from google.

<script><!--mce:0--></script>

Secondly we are going to add slightly the html of our sidebar. Add another div wrapping all the content of your sidebar. In our case, I’m going to give it an id of “sidebar_content”.

<div id="sidebar">
	<div id="sidebar_content">
		<!-- Sidebar content in here -->
	</div>
</div>

We also need a bit extra css, and css for our sidebar for when it becomes fixed.

/** Position our sidebar content at the top of our sidebar, and give it the width of the full sidebar **/
#sidebar_content {
  	position: absolute;
  	top: 0;
  	margin-top: 20px;
	width:200px;
}

/** When the sidebar becomes fixed, it'll fix to the top of the page **/
#sidebar_content.fixed {
  position: fixed;
  top: 0;
}

You may not understand the fixed class yet, but the following Jquery will help clear that up for you. Create a script tag in the head of your document, below, the Jquery we are loading from Google, and insert this code.

$(document).ready(function () {
	var sidebar = $('#sidebar_content');
	var top = sidebar.offset().top - parseFloat(sidebar.css('marginTop'));
	$(window).scroll(function (event) {
		var ypos = $(this).scrollTop();
		if (ypos >= top) {
		sidebar.addClass('fixed');
		}
		else {
			sidebar.removeClass('fixed');
		}
	});
});

This may look daunting if you’ve never touched Jquery before, but don’t worry, we’ll step through it line by line. We start off with the Jquery basic of when the document is ready, run this code. The create two variables.

	var sidebar = $('#sidebar_content');
	var top = sidebar.offset().top - parseFloat(sidebar.css('marginTop'));

Our first variable, “sidebar”, assigns the variable sidebar, with the selector pointing to our inner sidebar div. We called it “sidebar_inner”, but you may have called it something different.

Our second variable, top, calculates the distance of the sidebar from the top the top of the page, minus any top margin that we have applied.

$(window).scroll(function (event) {
	var ypos = $(this).scrollTop();
	if (ypos >= top) {
	sidebar.addClass('fixed');
	}
	else {
		sidebar.removeClass('fixed');
	}
});

This snippet of code starts off by saying, if the window is scrolled, carry out this code. I starts again by creating another variable by calculating how far from the top of the page we are, and assigning it to the variable “ypos” (position on the y-axis).

We then enter an if statement, that says: If the distance to scroll to the top is greater than the distance that the sidebar is from the top, give it to class of fixed. If not, don’t give it the class of fixed. This is where the fixed class we created earlier on comes into play. Easy huh? =)

Step 5 – Making a smooth page scrolling effect

So we have a lovely fixed sidebar as we scroll, without the traditional glitchy jumping that used to be commonplace with fixed sidebars, but out internal page linking still jumps directly to the destination, and while this is good, it isn’t very eye pleasing, so we are going to add an animated page scroll. Since the jquery to achieve this is too complex for us to hand write, we are going to use a plugin called localScroll, and another called ScrollTo for our animation. Download them both from here, and include them in the head of your document again, this time between our Google hosted Jquery, and our custom written Jquery.

<script src="jquery.scrollTo-1.4.2-min.js"></script>
<script src="jquery.localscroll-1.2.7-min.js"></script>

The implementation of this is stunningly easy. Simply add to our custom Jquery this one line of code.

$.localScroll();

Note : Make sure you place this line of code within the jquery wrapper,

$(document).ready(function () {
	// Somewhere in here!
});

And there you have it! A fantastically usable, and simply beautiful FAQ page that means the user can easily navigate between categories and questions, without having to spend ages scrolling through search pages, and loading page after page for different categories, or even clicking to open a single question.

Further Discussion

Have some thoughts on the usability of this page? Give them to me, I’d love to hear them. This is as much a proof of concept as it is a tutorial introducing you to basic html, css, Jquery, and plugins, but I’m sure there will be people out there who will feel a perfect FAQ page is something else. If so, what would you do?

Ordinary Tips For Better Summer: Brighten Your Life

Preview-tips-for-better-summerSummers first week is over and finally I can fully enjoy it too (passed my exams). I wish you all to have a great time in summer, so heres a few tips that hopefully will help you enjoy the summer even more.

I can only give you some guidelines, just when we all are so busy working and completing our own projects we forget to enjoy ourlifefully – but remember we are living just once and after my own experience – when I get some good rest I am working a lot more effectively and recover the vigor of life! You should do it too!

1. Enjoy summer

Enjoy-summer-tips-for-better-summer

(Image source)

You have worked so hard all year(I hope you did), so now its time to take a rest.

  • Step away from your computer and go outside
  • Get some sunburn and enjoy the weather
  • Make new friends and explore the world
  • Go to the beach, exhibitions, parties, anywhere you want to
  • Just say yes

Later in autumn youll have a great memories and plans for the next summer. You wouldnt want to remember how you spent all summer in front of monitor exploring HTML,CSS,PHP and all that stuff. Nobody (except other geeks) cares about it. Of course, dont leave job behind, just dont overwork. So I hope you got it, now decide what you want to do and go for it. Call an old friend, goto atrip, attend a rock festival its all up to you.

To man, who knows where he is going, the world shows the way itself. /David Jordan/

2. Do some sports

Do-sports-tips-for-better-summer

(Image source)

Summer is the best time tokeep yourself fit and take care of your health and body. You can take off somefat accumulated during winter. Have you got a gym in your town? I bet you have, but you have never been there. Find time to attenditat least twice a week. That will enlarge your muscle and you will have a good rest too.

Wake up earlier and go for a run around neighborhood. After that take a cold shower. Youll feel great and that will improve your stamina.

  • Try to jump with jumping-rope at least 100 times a day.
  • Take a longer ride with your bike.

There areplenty of things you can and should do. It doesnt matter if you arent so good at them.You haveto start from somewhere, right? Create a schedule with your activities. For example, start day with a mile run, then take a cold shower, after breakfast do some 3 x 10 push ups. Before lunch jump 3 x 100 times with jumping rope.In evening go for about 5 mile ride with your bike.Finally take shower and have a great sleep. Next day you can have a good restin beach withyour friends, a movie or something relaxing. Dont stick to routine if you dont want to. Dont exercise every second day if you dont want to. Just dont make a habit of doing that.

Our biggest success is not to fall, but the ability to always get up after we have fallen /Confucius/

3. Accomplish yourself

Accomplish-yourself-tips-for-better-summer

(Image source)

Have you wanted to do something for a long time but always prorogue it? Summer is the right time to do it. No matter if its physical or mental. Whether you want to learn to surf, learn a new language, quit smoking or something else just go for it. Create yourself a programme and stick to it. Dont give up success come only with hard work and strong belief. You can start with a little research on internet and then give it a practical try. Dont be lazy, think for future. Your achievements will depend on your past work.

If you dont have any specific goals, you can just try to live better, to be smarter. For example, read some books, magazines about history or art. Just put away those freelancer tips. What have you learned from them? To sit and slave all day at front of computer?

Success is the effect, it does nothave to be the ambition /Gustav Flober/

Do not expect fast and do not acquiesce with modest success. Hurry and you will not achieve intended, be modest, will not achieve anything great /Confucius/

4. Dont worry about autumn, but get ready for it

Do-not-worry-but-get-ready-for-autumn-tips-for-better-summer

(Image source)

Autumns far enough, but theres a saying create cart in winter, sledge in summer. Dont worry about autumn, but keep in mind that it will come. Do some work to make it easier later. Clean your house, workspace, buy and arrange everything necessary. When everythings set and you know you have done everything, its time to forget your cares and let the summer take you.

5. Give your eyes a rest

Give-eyes-rest-tips-for-better-summer

(Image source)

I bet a lot of you guys are have been spending too much time in front of any kind of monitor and thats bad for your eyes. Some of you realize that, some dont care. But Ive set a goal to improve my vision this summer. Ive actually found a great method to do it. Its called the Bates method. You can learn more about it at http://www.seeing.org/. Theres also a free book available here. You should really give it a try, because a lot of people are saying that it works. Vision is our main sense and its very important.

Dont ruin iteveryday reading uselessroundups,playing video games or just surfing in twitter. If you feel that your vision starts to impair, take care of it.

Who knows what he wants, can do-what he wants /Rainis/

Finally just dont become somebody like in this caricature! Fun stuff to make you smile and realise truth:

Takatakataka-tips-for-better-summer

17 Free Content Management Systems For Better Content Handling

17 Free Content Management Systems For Better Content HandlingEvery one that wishes to start a website or a blog needs a way to manage content. Content Management System (CMS) is found and created to fulfill this task for you. Content Management Systems is designed to simplify the publication of web content to websites and blogs, allowing content creators to submit content without requiring technical knowledge of HTML or the uploading of files. Several content management systems exist both in the Open Source and commercial domains. In this article I collected 17 free to use content management systems that will make your content creation process an easier task.

1. WordPress

WordPress started as just a blogging system, but has evolved to be used as full content management system and so much more through the thousands of plugins, widgets, and themes available to suit your needs. WordPress is also free and open source CMS and it is considered one of the most used content management systems out there and I might dare to say it is ruling out there. It uses PHP as a server side language and MySQL as a database.

2. mojoPortal

mojoPortal is a free and open source content management system built using the Microsoft ASP.NET and supports various databases like MySQL, MS SQL and PostgreSQL. It comes with a lot of built in features such as: Image Gallery, Event Calendar, Polls, Blogs, Forums and many more.

3. Drupal

Drupal is a free and open source content management system that allows an individual, a community of users, or an enterprise to easily publish, manage and organize a wide variety of content on a website.

4. Joomla

Joomla is a free content management system, which enables you to build web sites and online applications. Many aspects, including its ease-of-use and extensibility, have made Joomla one of the most popular content management systems available. Best of all, Joomla is an open source solution that is freely available to everyone. It has many built in features but if that’s not enough you can take a look at the 4000+ extensions from the community.

5. Pligg

Pligg is a free and open source content management system. Pligg CMS provides social networking software that encourages visitors to register on your website so that they can submit content and connect with other users. You can create websites where stories are created and voted on by members, not website editors. Use Pligg content management system to start your own social networking community in minutes.

6. SilverStripe

SilverStripe is an open source and free content management system. Besides their feature rich CMS they developed Sapphire which is an object-oriented PHP5 web framework designed to let you either build standalone applications or extend your SilverStripe CMS-powered site.

7. Plone

Plone is a powerful, flexible Content Management solution that is easy to install, use and extend. Plone is created for non-technical users to create and maintain information using only a web browser. Perfect for web sites or intranets, Plone offers superior security without sacrificing extensibility or ease of use for non-technical users.

8. BlogEngine.NET

BlogEngine.NET is an open source and free .NET blogging engine that was created to offer a better blog platform. A blog platform with less complexity, easy customization, and one that takes advantage of the latest .NET features. BlogEngine.NET was designed using the current .NET framework and focused on simplicity, ease of extendability, and innovative features. despite it packs a lot of built in features along with extensions available by the community it still lacks attention for the little details that is found in other content management system.

9. Symphony

Symphony is XSLT-powered open source content management system. Symphony leverages open standards like XML and XSLT, and good old XHTML and CSS. Even the admin interface employs the widely-used jQuery library, so extension developers dont have to learn a whole new framework when extending the back end. Symphony is comprised of discrete, fully configurable components. Its data, logic, and templating layers are all independent, meaning that whatever you implement can be modified, added, or removed with minimum effort.

10. sNews

sNews is a completely free, standards compliant, PHP and MySQL driven Content Management System. sNews is extremely lightweight, simple and customizable. It’s easy to install, and use via a simple web interface. sNews consists of only one core engine file, one independent template file and its accompanying CSS stylesheet file, plus an .htaccess file that makes all URLs search engine friendly.

11. CushyCMS

CushyCMS is a Content Management Systems that is truly simple. It’s free for unlimited users, unlimited changes, unlimited pages and unlimited sites. It’s built from the ground up with ease of use in mind – for both content editors and designers. It’s such a simple CMS that it takes less than 3 minutes for a web designer to implement. No PHP or ASP required for this CMS. If you can add CSS classes to HTML tags then you can implement CushyCMS. It’s also a hosted CMS, so no installation or maintenance is needed either.

12. Frog CMS

Frog CMS simplifies content management by offering an elegant user interface, flexible templating per page, simple user management and permissions, as well as the tools necessary for file management. Born as phpRadiant in January 2007, Frog CMS is a PHP version of Radiant CMS. Frog CMS requires PHP, a MySQL database or SQLite.

13. Radiant

Radiant is an open source content management system designed for small teams. It is built using Ruby on Rails and using the SQLite as a database.

14. MediaCore

MediaCore is a free open source video cms and podcast platform. MediaCore can pull video or audio from any source, track statistics, enable commenting, and provide a high degree of control over the presentation and administration. The CMS was built for individuals and organizations who wish to distribute video or podcasts on their website without kicking users to other social media sites. MediaCore is built using the TurboGears Python Framework and MooTools Javascript Framework.

15. CMS from Scratch

CMS from Scratch is a quick, easy, open source and FREE solution that lets web designers give their customers a web site they can edit themselves. It is now also an open source project, so you can use the source PHP scripts for FREE.

16. MODx

MODx helps even regular individuals manage content on their websites simply, quickly and intuitively. For the geek-elite, MODx is an Open Source PHP web application framework with a capable built-in Content Management System.

17. TYPO3

TYPO3 is a free Open Source content management system for enterprise purposes on the web and in intranets. It offers full flexibility and extensibility while featuring an accomplished set of ready-made interfaces, functions and modules.

5 Ideas To Help You Become Better Web Designer

Web design, like every other form of design is ever-changing! Web designers thus need to be updated with the latest trends to be able to design creative websites. Web design has seen the emergence of new trends and new ideas in last few years. There was also the addition of website interactivity to web design. Newly designed sites are inclined towards displaying their content in an interactive way. Their focus while designing websites is beyond a creative canvas; it is more about attracting users and getting a user engaged on the site.

To understand and use these concepts, we can take a look at some of the most common design ideas to watch out for in the coming days. These highlight some important tips with examples that can be used for web design. I am sure, many talented designers are already aware about these tips; however, one tends to overlook them!

Use of attractive graphics and displays

There are many websites that stand apart from the rest. A web designer can use a creative layout and concept to attract users. This helps to capture the initial attention of users. Yet, one can never be sure whether it keeps a user on the page for a good amount of time to convey the intended message. In this case, website interactivity can help to engage users on a page. Users stay on a page when we provide them some actions to be performed to explore a site rather than providing simple text-based content. Using interactivity on a website helps to capture initial attention of users along with presenting information in a way which encourages user to perform desired action on the page.

For example, a product website can include quotes from customers that lend authenticity to a website. This gains faith from users. A common way to display the customer testimonials is through the use of quotes with the name and designation of the customer. Though the product has many good customer testimonials, this display cannot guarantee to capture the attention of the users. Instead, an interactivity that displays the quotes and customer photographs is surely an attention-grabbing idea. It would not only present the content in an engaging manner through the creative use of flash interactivity; but also give a personal touch to the existing customers which would encourage other customers to have their testimonials out there.

Wrangler

Wrangler Site

Another great example of engaging users to explore the website is Wrangler’s site. We all know about the popularity of the brand Wrangler. This website displays the products in a very unique way. It engages user to perform actions like unzip the jacket, drag a shirt to view the shirt design, etc. to browse the website further. The visuals then unfold in a very interesting manner. The collection can be viewed only after the user performs some action on the website!

A website can even enhance its display in a unique manner to connect with the users.

This website has made a creative combination of interactivity and animation to present information about the company. Buzz, the integrated design studio has displayed each and every section about the website in a unique interactive way. With every click, the animated figures amuse users while presenting the information.

Jim Carrey

Jim Carrey is a personality who needs no introduction. His website also reflects his unique, creative talent. There is an interesting use of displays in terms of photographs and forms.

The use of interactivity is done cleverly as with each click, something new unfolds on the page. To know more, you must explore it yourself!

So, have you already started thinking of something unique and different to allow users to explore your site? Well, just hold on a second! This is just the start. Read further to explore few more design trends which are picking up :)

Enhancing the common elements

It is also seen that creative websites have a great emphasis on color and layout. This means that there are many elements that may not even get that much attention, such as a site map that is not always presented in a creative way.

We can take another example which will highlight why one needs to enhance these finer elements on a website. A normal site map that is seen on most sites contains details in a text and link format.

The trick is to break away from this tradition. Present the site map details in a creative way with images and interactivity to make a user want to view the site map.

I am sure that there is no one here who does not know about J.K.Rowling and her famous Harry Potter series. Have you ever explored her site? Her site is also as creative as her Harry Potter books. Check out a screen shot of her website below.

JK Rowling

The website contains a visually appealing layout as seen in the example. The elements that are spread out are keys to the site map. There is the use of many interactive features which contain details about the site.

The tabs such as Biography, Wizard of the Month, Tales of the Beedle and the Bard and even the contact tab are used very creatively into this layout.

Nike

In this website, one can witness a creative usage of product display. The product features are shown in a unique manner rather than the typical forms of layout.

The central portion can be moved around with a cursor which changes the placing of the light to display the various features of the product.

Dior

Dior is a brand that has a large fan-following. Their website itself reflects the exclusivity of the brand. This example showcases different Dior perfumes with a creative touch. Instead of showing the products in a regular manner, there is an interesting display of the fragrances.

The setting is quaint and makes a user want to explore the website further. The different elements are highlighted with the use of color and interactive elements.

Have you ever observed this kind of trend before? If not, start looking around. You would definitely find many such creative site maps.

Induce action from users

Even when a website is creatively designed, the final aim of the website is to make a user perform a desired action on the page. This action could be to register for a free trial or enquire about a service. This is when a web designer needs to think, what next? to move on to the next level.

If you have a website which thrives on advertisement revenue, then it is quite probable that the page would have many advertisements. In such cases most of the advertisements fail to capture user attention in the crowd of advertisements. These become a blind spot for most of the users. This is when website interactivity can be used to capture the attention of the users.

You might be thinking how can interactivity helps in advertisements? Well, I have already said that now we need to think creatively! And nothing is impossible in the world of creativity! :)

Instead of having a plain banner, a user can be attracted to view it by having the banner designed as peel-off interactivity. This means, a user needs to peel off the first layer to reveal the message beneath. It can be very effective particularly for a teaser campaign.

Imagine your first layer of peel-off says Please dont look beneath me! It would be difficult for you to resist the offer! Dont you think a user would have an urge to see what is beneath? Definitely, at least I will! Once the user peels off the banner, it sees the actual advertisement of the offer or the service.

I Make My Case

Mobile phones are a rage and everybody is on the lookout for an exclusive design. This example is about a website where one can create one’s own design and order for a mobile case based on the design. Therefore, this website uses interactivity to display the same.

All a user needs to do is click to select graphics, colors, etc. to create a mobile case of his/her choice. This is a unique idea to engage users whilst they try new designs and highlight the company profile.

Design Embraced

This website showcases works of an interactive designer. The portfolio can be viewed by clicking and dragging, which makes a user perform an action on the page. The presentation is sleek which adds to the aura of the designer.

Engage users whilst they perform an action

There are numerous websites which provide various services for different kind of users. For example, if you go to a shopping website, there are all kinds of things which are sold on such sites. The website design for such topics may not direct users to appropriate items they are looking for.

A user may not have time or patience to look through various categories and find out the required information.

For example, a photography website can have tabs such as nature photography, useful cameras for nature photography, wildlife photography, etc. If these elements are presented together, it can make a user visit all the tabs in search for information.

A user thus gets engaged whilst referring to these tabs and is motivated enough to perform an action.

Let us look at a website which has used interaction to its best to showcase its summer and fall collections. Its collection is displayed through the circular leaf design on a plant.

Extre

Wont you like to go through the complete collection by clicking its various circular leaves? This is a unique way to engage users to encourage them to go through the complete new collection! Isnt it?

FNN

This website is creatively designed to bring about an interest amongst users to explore it further. Here, the F&N product flavors can be viewed with mere clicks. As a user clicks the can, the different flavors are revealed with each click. This turns out to be an engaging factor for users whilst the product information is shared.

Adding Interactivity to Websites

After reading through the above points you would have definitely agreed that interactivity is the way to achieve your aims for website design.

Interactivities are just great and they add the WOW factor on your website. But creating such interactions would take months and we dont have that much time on hand, isnt it? Well, then I have some good news to share with you!

My experience as a web designer states that creation of such interactivities does not take months and also do not require knowledge of Flash. If I tell you that adding interactions to your website can be done in minutes and without any programming, would you believe me?

I know some good software tools such as Raptivity Web Expert which allows creation of interactivities using simple wizard-based customization. This completely eliminates the time spent in programming!

By paying close attention to websites, one can fine great samples of interaction which would engage you and make you think that web design is no longer a simple HTML page but a canvas which can be painted creatively and differently! Do you know any such creative website? Do share them in the comments below. I would love to hear from you!