Convert More Leads With a Cleaner Website

by Nathan Blair on Tuesday 23 March 2010

A big part of marketing is putting yourself in your customer’s shoes. Business owners should likewise take a step back occasionally and look at their website from the customer’s perspective. Let’s take a look at the home pages of two websites so you will see exactly what I’m talking about.

As you look at these sites, act like you are the customer and you have no ties to either one. You go looking to buy Widget X online and you find this website listed first:

Exhibit A

cluttered website

How user friendly is this site?  In other words, how easy is it for a customer to look at this website and know exactly what they are supposed to do in a few seconds time?

Now, you return to the search results and you find this website:

Exhibit B

UGMONK

What you see above is a clean, orderly interface. You know exactly what they sell, and they make it easy to buy. The design is excellent, and the checkout process is simple.  I actually went through the process of buying a shirt on this site, and I was done after a few easy steps.

Why you should care

Sometimes website owners get so used to their website that it becomes hard to see past the usability flaws. Before they know it, the site starts looking like Exhibit A when it should look as good as Exhibit B. Hopefully you don’t have a site like the first one up above, but I’m willing to bet yours could still use some improvement. Here are a few areas where your site might be suffering and what you can do about it.

Too much text distracts from the call to action

Don’t get caught in the trap of cramming too much text onto your homepage. Unfortunately, if you try to give readers all the information at once, you risk boring or confusing them. That leads to high bounce rates and less conversions. Bounce rate refers to how many site visitors leave your site from the same page they came from, without exploring any other pages. Obviously, you want to keep your bounce rate as low as possible.

How to do it right

All you need on the homepage is what leads a customer to buy now. If you want them to buy a t-shirt, put up a big picture of a t-shirt. Put the price right underneath it. Then either make it clickable, or put a big bold button to the right of it that says something like “buy now”. If you don’t sell t-shirts, apply this advice to your product. Simplicity will work anywhere.

Make your content to the point

When you have to include text on the homepage, it must be clear and to the point. Consider the what, why, when, where, and how, and answer it as concisely as possible. Test out your site content by getting somebody else to read it. If they get it the first time, and it’s perfectly clear (avoid industry jargon), you’ve got something to go with. Also, don’t forget the navigational text should be simple, too. Avoid having a top menu, left sidebar menu, right sidebar menu, mini menu, bottom menu, etc. Just put it up top or on the left side and be done with it.

Color and size matter

Pick the area on the page where you want to direct the most eyeballs and make it stand out. If it is a “Sign Up” or “Buy Now” button, color it in stark contrast to the background so it’s easy to see. Make your main call to action button larger than your intuition tells you, and put it in a prominent and clean area of the homepage. You have unlimited options, but the concept of bold and obvious remains.

You might need a redesign

Most of you would agree that the red and blue thing at the top of this post needs a website redesign. The hard part is acknowledging that your site needs one too. Moving buttons around, changing colors, and cutting out text is enough for a lot of websites, but some are too far gone. If you’re there, start from scratch with a designer you trust. Just make sure that your designer knows how to design a site that converts into sales.

Conversion is an essential part of search engine marketing because it deals with what happens after the customer has clicked on your search engine listing. Make sure you are balancing your resources between search results and conversion, because nobody will purchase your amazing product if they can’t find it on your site.

*Exhibit B is the totally rad Ugmonk.com. Buy one of their shirts.

Syndicated via RSS From: http://www.seo.com

Get free white papers delivered direct to your inbox from IT Knowledge Hub! Register now for cutting edge webcasts, reports, and white papers in your area of expertise.


Build Engaging User Communities

by admin on Wednesday 10 March 2010

IntelliTek-Logo

Build Engaging User Communities

Effective, efficient collaboration is at the heart of today’s most successful companies. SocialBiz by IntelliTek provides small and mid-market companies with a platform to build engaging user communities for internal collaboration, customer support, sales, marketing, and public relations.

Complete the form below to access this White Paper from IntelliTek Systems:

E-mail Address

First Name

Last Name

Company

Company Size

Industry

Job Title

Address

City

State

Zip

Country

Business Phone

Which of the following solutions are you considering implementing in the next 12 months?

What is your budget for these initiatives?



JavaScript WYSIWYG Editor – TinyEditor

by Michael on Monday 8 February 2010

JavaScript WYSIWYG Editor

TinyEditor is a simple JavaScript WYSIWYG editor that is both lightweight (8KB) and standalone. It can easily be customized to integrate with any website through CSS and the multitude of parameters. It handles most of the basic formatting needs and has some functionality built in to help keep the rendered markup as clean as possible. The icons are courtesy of famfamfam and have been combined into a sprite so there are only a few HTTP requests for the editor. I plan on adding some updates in the future to support font color, a full-screen mode, and a paste from Word option.

To initialize the script use the following:

new TINY.editor.edit('editor',{
	id:'input', // (required) ID of the textarea
	width:584, // (optional) width of the editor
	height:175, // (optional) heightof the editor
	cssclass:'te', // (optional) CSS class of the editor
	controlclass:'tecontrol', // (optional) CSS class of the buttons
	rowclass:'teheader', // (optional) CSS class of the button rows
	dividerclass:'tedivider', // (optional) CSS class of the button diviers
	controls:['bold', 'italic', 'underline', 'strikethrough', '|', 'subscript', 'superscript', '|', 'orderedlist', 'unorderedlist', '|' ,'outdent' ,'indent', '|', 'leftalign', 'centeralign', 'rightalign', 'blockjustify', '|', 'unformat', '|', 'undo', 'redo', 'n', 'font', 'size', 'style', '|', 'image', 'hr', 'link', 'unlink', '|', 'cut', 'copy', 'paste', 'print'], // (required) options you want available, a '|' represents a divider and an 'n' represents a new row
	footer:true, // (optional) show the footer
	fonts:['Verdana','Arial','Georgia','Trebuchet MS'],  // (optional) array of fonts to display
	xhtml:true, // (optional) generate XHTML vs HTML
	cssfile:'style.css', // (optional) attach an external CSS file to the editor
	content:'starting content', // (optional) set the starting content else it will default to the textarea content
	css:'body{background-color:#ccc}', // (optional) attach CSS to the editor
	bodyid:'editor', // (optional) attach an ID to the editor body
	footerclass:'tefooter', // (optional) CSS class of the footer
	toggle:{text:'source',activetext:'wysiwyg',cssclass:'toggle'}, // (optional) toggle to markup view options
	resize:{cssclass:'resize'} // (optional) display options for the editor resize
});

The first parameter taken by TINY.editor.edit is the variable name used for the object instance. Keep in mind that before posting you will need to call the instance.post() function to ensure that the latest changes in the WYSIWYG translate into the text area. This script has been tested in all major browsers and is available free of charge for both personal or commercial projects under the creative commons license. Community support is available here. Paid support is also available, contact me for details.

Click here for the demo.

Click here to download the source code.

1/8/2010 – Resolved a couple IE and Chrome issues and added some cleanup for Safari/Chrome. Thanks for the reports.

1/12/2010 – Resolved issue with conversion to lower case and the header row class.

Syndicated via RSS From: http://www.leigeber.com

Get free white papers delivered direct to your inbox from IT Knowledge Hub! Register now for cutting edge webcasts, reports, and white papers in your area of expertise.


Diff parser for CodeMirror

by LiraNuna on Saturday 6 February 2010

I wrote a quick diff parser for  CodeMirror.

CodeMirror is a real-time code editor for your browser. I know that diff isn’t a format edited by humans, but I found myself needing the diff syntax highlight where other code is shown.
More on that soon.

Live Example, Download the parser.

Syndicated via RSS From: http://www.liranuna.com

Get free white papers delivered direct to your inbox from IT Knowledge Hub! Register now for cutting edge webcasts, reports, and white papers in your area of expertise.


Development Opening

by Michael on Tuesday 26 January 2010

I am looking for a highly motivated individual to join me full-time. Applicant must be determined, creative, and have a solid understanding of PHP. They will be responsible for designing, coding, testing, debugging, documenting, and supporting web sites and applications. They should be highly organized and capable of managing multiple projects and priorities simultaneously if needed. This is an excellent opportunity for an ambitious individual to become part of a small team with plenty of opportunity. Qualified freelance developers will also be considered.

Required Skills:

  • At least one year of development experience using PHP
  • Ability to write hand-coded, cross-browser compatible, standards compliant XHTML and CSS
  • Experience with XML, Javascript, and AJAX
  • Ability to become proficient in new languages quickly
  • Strong communication skills

Pluses:

  • Experience with ASP.Net
  • User interface and graphics skills
  • Understanding of SEO principles
  • SQL and database design experience
  • Basic understanding of Apache

Send a resume and any applicable portfolio links to contact@refinacorp.com. No development firms. Qualified individuals will be contacted. Candidates local to North Alabama are preferred.

Syndicated via RSS From: http://www.leigeber.com

Get free white papers delivered direct to your inbox from IT Knowledge Hub! Register now for cutting edge webcasts, reports, and white papers in your area of expertise.

Copyright © 2010 IT Knowledge Hub LLC | Advertise | Contact | Privacy Policy | Terms of Use | Register