Thursday, July 17, 2008

Squidoo Lens. Are they for you?

Another great tool that you can use to increase traffic, or just share your thoughts on any given topic is Squidoo Lenses. Basically, it is a social networking site that will have you up and running with a web presence in under 5 minutes. As an example, here is a Lens I just created.

Squidoo Taekwondo Lens

As you can see, I was able to list some good content, links to videos, links to other web sites:

Taekwondo T-Shirts and Gift Ideas

It offers many preinstalled scripts that you just plug in to your Lens (page) and lets you customize them to your needs. There are also options to generate money from your lens and you can either donate the proceeds to charity or get it in full. Over all, anyone with basic internet skills should be able to quickly create a page and with some customization, have some fun with it.

Taekwondo T-Shirts and Gift Ideas

I just finished a small website that uses CSS and XHTML to display a table free web site. The graphics are done with GIMP. Here is the link: Taekwondo T-Shirts and Gift Ideas

I will post a short tutorial soon. The tools used were GIMP and Windows Notepad.

Tuesday, June 10, 2008

Sales Pages With Style - Create Quality Sales Pages With CSS

By
Elizabeth Adams

Sales pages, to be effective, must immediately catch the attention of even a casual web surfer. The sales message contained in the sales page needs to be both easy to read and understand. If the content-display styling is well-crafted, the sales message can be absorbed with just a rapid page scan. An interested reader will re-read the page for the details.

Sales copy provides the content which entices the reader to move deeper into the page towards the "Order Now" button.

The job of a Cascading Style Sheet (CSS), is to

* facilitate page navigation,

* improve readability, and

* call attention to important content.

There are lots of articles and ebooks available on the Web about "writing" profitable sales copy. You can easily find them with a quick search. This article focuses on "styling" the sales page and its content with CSS.

There are several advantages to using CSS for display styling. One of the best reasons is that it frees the copywriter from initial concerns about page formatting. Using very basic HTML code, such as that allowed for submissions to ezinearticles, the page content can be written with any basic text editor without concern for special content formatting.

Before any CSS styling has been applied, the sales page would not convert any prospects. At this stage, the HTML document contains all of the "content" that will be used. Text and images will typically be positioned on the page in roughly the order these elements will be used in the final sales page. CSS will make everything "pop" and "sizzle" when it is applied to the page.

After the sales copy is written, important page elements (identified through HTML tags) and content (information between HTML tags) can be identified and linked to the appropriate CSS formatting code, contained in separate CSS text file, for browser display. A previous article of mine, published at ezinearticles, explains how the HTML content gets linked to the CSS file. Briefly, the HTML-CSS link is done through the HTML "link" meta tag and content is identified through class and id tag attributes and through the use of the HTML span tag.

Content-specific styling includes special text formatting, such as highlighting and quotations, and the placement of items such as images and forms within the page.

I like to display the content in roughly the middle half of the monitor display and use a line length of about 60 characters. I also like to use a large enough font size to make blocks of text easy to read.

Because the page layout is so important, I use a fixed table design for the content: the content is placed in the center of the display and is framed in by wide right and left margins and narrow top and bottom margins. If the width of the browser page is narrowed by the reader, the right and left margins will narrow equally but the content area will remain the same width, and thus the content layout remains the way it was designed (i.e., not "liquid").

Essentially, my basic page layout consists of 4 nested "boxes:"

* HTML Box -- demarcated by html tags and contains all other boxes.

* BODY Box -- demarcated by body tags and contains the table and main-content boxes.

* Table Box -- demarcated by table tags and contains the main-content box.

* Main-Content Box -- demarcated by div tags and contains the sales-page content.

The HTML box includes the entire HTML document (except for the document-type declaration). The Body box contains everything visible to the reader. The Table box contains the sales page. The Main-Content box, as the name implies, includes all of the visible content of the sales page.

A sales page requires both global and content-specific CSS styling. Global styling includes such considerations as the page background, default font and line attributes, and page margins. Here is the global code I include in my CSS text file for sales pages:

body

{

font-size : 62.5%;

font-family : Verdana, Arial, Helvetica, Geneva, SunSans-Regular, sans-serif;

color : black;

line-height : normal;

background-image : Specify the image URL here;

}

#main_content

{

font-size : 1.6em; /* this sets the default font size for the sales page and will display at 16px */

margin : 5%;

}

h1

{

font-size : 2.25em; /* will display at 36px */

}

h2

{

font-size : 1.5em; /* will display at 24px */

}

h3

{

font-size : 1.25em; /* will display at 20px */

}

h4

{

font-size : 1.125em; /* will display at 18px */

}

table.sales-letter

{

width : 60em;

margin-left : auto;

margin-right : auto;

table-layout : fixed;

background : #ffffff;

}

The body code above sets the default for the document's font size to 62.5% of 16px or 10px (px = pixels). This is too small for my sales page, and I adjust it in the #main_content section. The CSS body code also sets the font color to black, the line spacing to normal, the font family to sans-serif (with Verdana as the first choice), and specifies a blue background image used for the body background.

I use the #main_content code to set the actual base font size I use for the sales page text. All other font sizes in the sales page are sized relative to this base. Unless otherwise specified, all text in the sales page will be 1.6em or 16px. I use the margin attribute to provide content spacing between the content and borders around content.

The "Hn" tags set the basic header sizes and are calculated based on the font size I specified for the #main_content. As an example, since I will be using a default font size of 16px for the sales-page content, the H1 font size would be 2.25x16px or 36px. The "Hn" tags can later be modified with additional attributes, such as color and centering.

The CSS table attributes I use place the sales page in roughly the middle half of the full-size display page (1024 x 768 pixels). The width of the table, 600px, is just right for the line length I want to use. Since the table-layout attribute is "fixed," the table layout in the browser will be preserved at all times.

Since all of the font sizes are relative to the font size I set in the #main_content section, all sizes can be made larger or smaller by changing just the one value. For more information about the use of ems for sizing, I would suggest a visit to a blog post by Richard Rutter.

After the global formatting is applied page now has some nice-appearing structure.The content now lies between attractive borders and the content is contained on a "page" with adequate margins and on a background of choice.

Below are 12 additional tips, including the CSS code, you can use to stylize specific elements and text in your sales pages.

(1) I want my headline to be big, bold, red, and centered. Here is the CSS code I use:

h1.headline

{

line-height : 1.5;

color : #cc0000;

text-align : center;

}

(2) I use a smaller, blue, bold, and centered sub-headline.

h2.subheadline

{

line-height : 1.5;

color : #1b356e;

text-align : center;

}

(3) I use a small font size for the spider text and copyright. I position the spider text at the top of the page for the benefit of search engines.

#spidertext, #copyright

{

font-size : 1.2em;

}

(4) I use CSS code to position my photo so that it "floats" to the right and any text to the left flows around the photo.

.photo

{

float : right;

display : inline;

}

(5) If you want to center section headings and color the text red or blue, here is usable code:

h3.red

{

line-height : 1.5;

color : #cc0000;

text-align : center;

}

h4.blue

{

line-height : 1.5;

color : #1b356e;

text-align : center;

}

(6) I change the font type for quotations. Using Courier New sets the quotes apart from normal body text.

.quote

{

font-family : "Courier New", Courier, monospace;

}

(7) I use an unnumbered list for my benefits list. The list can be customized to use a custom bullet and extra space between list elements. The CSS code to accomplish my custom list formatting is as follows:

li

{

list-style-position: inside;

list-style-image: Specify the image URL here;

list-style-type: none;

margin-bottom: 1em

}

(8) You can highlight important text with a yellow background.

.highlight

{

background-color : yellow;

}

(9) You can emphasize text by making it bold.

.bold

{

font-weight : bold;

}

.boldred

{

font-weight : bold;

color : #cc0000;

}

.boldblue

{

font-weight : bold;

color : #0000ff;

}

(10) I like to make sales-page testimonials special by framing them and using a pastel background for the text.

.testimonial

{

display : block;

margin-left : auto;

margin-right : auto;

background : #fffacc;

padding : 1em;

border : double;

border-width : thick;

border-color : #999999;

}

(11) The purchase form is a very important component of the sales page. I use a red-dashed border for the form.

.purchase-form

{

padding : 1.5em;

border : dashed;

border-width :medium;

border-color : #FF0000 ;

background : #fffac6;

}

(12) If you use an image and associate a link with it, you will want to turn off the border or you will get a distracting blue border around the image.

a img

{

border : 0;

}

After all CSS styling has been applied, the sales page now has some "snap" and "pop". The colorful headline immediately catches the attention of even a casual web surfer. The sales message contained in the sales page is now easy to read and much easier to understand. The well-crafted content-display makes it possible for the sales message to be absorbed with just a rapid page scan. After a preliminary scan, an interested reader will more than likely re-read the page for the details.

To get a ZIP file of the HTML and CSS files mentioned in this article and that you can use for practice or for your own templates, please visit http://www.elizabethadamsdirect.com A full-color PDF of the article is also available for download.

Sample web pages showing the template sales page without CSS applied, with just global CSS applied, and with all CSS applied can be seen at http://www.elizabethadamsdirect.com/template/exhibits.html

To look at a "real" sales page that used the CSS techniques discussed in this article, you can visit http://www.elizabethadamsdirect.com/greatheadlines

About The Author
Elizabeth Adams has been writing direct sales copy since the early 1990's, when she employed several people to handle mailings and product fulfillment for her postcard marketing business. Elizabeth learned in direct mail how to tweak her sales copy on the run and improve her sales conversion by as much as 400% in only one mailing. She learned how to write a great headline and effective sales copy. Get "Great Headlines — Instantly" today to learn how to do for yourself what Elizabeth learned in the trenches: http://www.elizabethadamsdirect.com/greatheadlines/

Sunday, June 8, 2008

Website Design and Redesign

By
Giovanni Gallucci

The website design your company commissioned a few years ago may hold a special place in the hearts of some within your company, but the market needs to be gauged regularly to determine if what worked then is what will work today. Your online presence must evolve if you hope to stay ahead of your competition. Mimicry and imitation of the #1 company in your sector is not the answer. Let DexterityMedia.com help you think ahead, employing not only proven design tactics, but revolutionary methods as well. As a leading Search Engine Optimization Company and Interactive Media Agency with offices in New York and Dallas, DexterityMedia.com is dedicated to achieving a strategic online presence for our clients through innovation, experience, constant testing and evaluation.

Working in close collaboration with your company, DexterityMedia.com's web designers and developers focus on usability, searchability and corporate branding, creating the most prospect-friendly, user-friendly online experience for your websites visitors.

While we do enjoy some of the more cutting edge tools and methods, we tend to shy away from gimmickry and the gratuitous use of "the next big thing," relying instead on proven and researched technologies that we predict will have staying power.

Affordable, innovative and strategically sound, DexterityMedia.com website designs focus on building your business.

DexterityMedia.com designers have worked for some of the biggest names in business. Contact us for a portfolio sample and URLs to some of our work or to schedule an evaluation of your website design or redesign needs.

About The Author
Giovanni Gallucci

I provide strategy for new developments in social media, search, and technology for clients and function as a strategic representative to top Internet personalities and forward-thinking companies looking to break new ground in social media. I am also a founding partner of a Dallas-based online marketing firm called Dexterity Media.

http://dexteritymedia.com

Saturday, June 7, 2008

Why Stealing Meta Data From Another Site Is A Dumb Idea

By
Ted Cantu

In the search engine realm of things I meet a lot of “pros”. I also see a lot of their handiwork when it pertains to web site optimization. But more and more I see a lot of really poorly written, (and often times stolen) bits of web page material that makes absolutely no sense.

The common thing to do among web site professionals is to try to gouge the customer for as much as they can. This includes trying to carry the project off without a hitch to show some bit of competence. I find this done with a lot of web designers who have never been certified though an SEO, (search engine optimization) program of any kind. These types will actually steal the meta data off another web site and then jam it into your pages hoping that it will work. They change a few of the keywords and pray to God that you won’t catch them.

This is a really bad idea for several reasons.

There are specific categories that the search engines look for. For example, they do not look for the word, “retail” but look for the word “retailers” and this is the case for at least 75 other main categories. There are subcategories that are applied for each of these main categories too so it can be a bit confusing. Slapping in any keyword that comes to mind for any of these categories is what a lot of these web professionals do leaving you off the map.

The Poor Web Designers Defense

They will come out and tell you that keywords really do not matter. That is the first thing I hear quite often. The second thing I hear is that Google really doesn’t read meta data, (which is not entirely accurate). Some search engines do not place importance on meta data and others do. But that doesn’t mean that you should by any means allow some arrogant knucklehead to jam in unrelated keywords on a whim, (even if he is a nice guy or has a family).

The search engines really only make up for 10% of your overall traffic so why would you want to blow it? I would rather get someone who can do it right.

That is not the only place where you can blow it. The titles and descriptions are quite often left off of the pages. Many times they have no real relationship between the body copy or the keywords. It is still possible to create a page that uses the keywords but contains no real relationship. These pages are not ever going to get indexed and pulled up on a Google search.

Your title has to have keywords in it and those same keywords must also be included in your description. Simply said this also has to appear in your body copy, (sales copy) in order for the page to get an overall ranking of 75% and higher. Many times this does not happen because of some oversight. It is possible to wing this to a degree. But if you are making up your own meta data you could be seriously driving your web site over a steep cliff.

The worst meta data material I ever seen belonged to a site that had 17 lines of meta code. He claimed he stole it from someone else on the Internet. I was a bit impressed with it and asked him if he had any luck with it. He just looked at me sort of confused and shrugged his shoulders. I asked him how many conversions he had from visitors to sales and again he rolled his eyes and said he did not know. This is where stealing becomes a big problem. But if you are charging money to clients and doing this type of thievery you are misleading and abusing your clients.

Good Meta Data

Where can you get good meta data and good keywords? There are many free services out there that will offer you both as a consumer. You can always go to, http://www.goodkeywords.com to use their free keyword generating system. It is fairly good and accurate. It is not as comprehensive as a subscription service but you will get the general idea. For meta data generation you can always go to, http://www.1stsitefree.com/meta_gen.htm . This will get the basic job done. You will notice that there are some fields that are missing and if you are industry specific you will want to get someone who knows how to format this part of your web page properly.

Entrusting your business to someone who is hot wiring your online business on a whim is a very risky thing to do, (even if he is your best friend or ex-brother in law). The smart thing to do is to go out and find someone with competence who has actually done this before. You will save a lot of time, money and headache by dealing someone with real life experience. You’re business is too important to place in the hands of a hack.

About The Author
Ted Cantu runs iMobile Media, (http://www.1seomichigan.com )and works out of NYC, Chicago, and Detroit, Michigan. He has the number 12 podcast show on http://www.podomatic.com you can listen to it here… http://911copywriter.podomatic.com

List Building And The Single Page Website

By
Scott Lindsay

Here’s a scenario for an online business that provides information and is in existence to help other succeed in their online ecommerce objectives. You should know up front that the ultimate goal for the business is to get you to purchase their marketing plan.

Do they develop a flashy website with flash and animation? Do they flood the screen with video testimonials or podcasts? Do they pay a celebrity to provide a testimonial?

There is a quiet awakening in a form of marketing that is essentially low key, low budget and is essentially comprised of a single visitable page.

The page provides an audio greeting from the owner telling you briefly about the product and the potential success. You are then invited to read a singular page of information.

Once the visitor does this they have to make a choice. If the information is solid enough they will need to determine if they are interested enough to find out more. If they are then they will need to fill out a form on the single page website. That is the key that unlocks a world of information. This approach is a prime example of powerful list building strategies.

A site like this may be a prime candidate for web builder technology. The site is essentially simplified and does not require significant upkeep so the use of a site builder can be a cost effective and simple way to reach your online objectives.

The remaining functions of the website may be comprehensive or the information the guest needs may be managed through autoresponders. In other words when the door is unlocked you can help guide your visitor in the way that will best help them understand your marketing product the best.

Obviously this is a business-to-business scenario, but the process may have possibilities for business to customer applications as well.

I think one of the reasons this might be a smart approach to marketing is that you are not immersing your guest into a site that has so much information it can be intimidating to actually learn where to start.

This approach may result in fewer signups, but these individuals may be more motivated to learn more and perhaps share your message. You can help them by systematically dismantling your marketing system or product and bringing it to your customers in bite sized nuggets that are attractive and filling.

As a business owner you might look at passing along the information in either a webinar video stream or an ecourse that is sent to customers over a period of time by autoresponders.

Why do you think listening to books has become so popular? People seem to have less and less time to devote to something they feel is overwhelming. If you were to simply send out a manual in the mail with your information it may get lost and unused, but by creating attractive and helpful sections that are dispersed at strategic times you may find those same individuals learning significant amounts about your business and/or product.

There are many ways to develop your site and equally remarkable ways to build traffic. This article presents a case for a technique you may have never thought about before.

About The Author
Scott Lindsay is a web developer and entrepreneur. Make your own website in just 5 minutes with HighPowerSites at: http://www.highpowersites.com or Build A Website at: http://www.buildagreatsite.com. Start your own ebook business with BooksWealth at: http://www.bookswealth.com

Top Tips for Web Design

By
Frank Woodford

This article takes a look at the top 10 web design tips for users at any level. It will give you 10 complete different points to contemplate when you next begin a site design or when talking to your web design consultant/employee.

Design is never straight forward and web design has the additional unpredictable complication of technology thrown in. This means that you need to consider the consequences of your design decisions and how it will effect the most important people who see your site, the users themselves. The following tips should help you consider this and have a positive effect on your site and its users.

1. Navigation & Functionality

You should never sacrifice overall functionality for artistic extravagance. It is highly unlikely your site will ever achieve its purpose if the people who visit it cannot clearly and easily navigate around it.

Your site should look good but first and foremost consider how someone who knows nothing about the site would think when they landed there.

Something occurring in website frequently these days is Mystery Meat Navigation. This is a term coined by Vincent Flanders and it is used to describe site where navigation structures are so obscure and difficult to process that users cannot identify them at all and end up running there mouse across whole sections of a screen just to identify hyperlinks.

2. Images

People say images are worth a 1000 words and in web design that’s true in 2 ways. Firstly an image can do a lot more than text in some situation but secondly they are much, much bigger files with a higher download time.

It is widely accepted users will click away from a page that takes longer than 5-10 seconds to load and every time you put an image in a page you are increasing the likelihood of this happening. Additionally each image you imbed into a page design activates an additional HTTP request to your server so dividing an image into smaller ones or using lots of small images across a page does not solve the problem.

ALT tags should also be factored into the code of a website. They are a huge help to people who have either images turned off in a browse, mobile broswers that can’t read the images or a random error preventing the image from showing. They also hold a small SEO benefit.

3. Tables

It is advised that you use CSS and not tables to format a document but in some cases tables can be necessary. Remember one thing however, a table cannot be displayed until it has fully loaded. This can potentially cause a huge problem for users as they wait for the page to load, nothing appears then out of nowhere the whole page is done.

Someone is much more likely to click away when nothing is loading than when they can see progress.

4. Fonts

Don’t design sites to use fonts only you have, chances are they will be converted into some dull font and ruin the effect you were trying to achieve. Save special fonts for specific headers and convert them to images. Make the rest of your site in standard fonts so that as many browsers as possible will see it in the way you meant it to be. Recommended fonts for high scale compatibility are Arial, Verdana, Courier, Tahoma and Helvetica.

5. Plug-Ins

Plug-ins hold a lot of potential for both users and designers but it can easily be misused and misguided.

Plug-ins have a many forms and uses, the most popular being Java and Flash Player. I have heard a lot of people say that these plug-ins are “safe” and that everyone has them but this is simply not true. Every plug-in has a stack of different versions and connects differently depending on the browser the user is surfing with.

Think if your users will really want to browse to other sites to download a plug-in, restart the browser then navigate back. If the answer is no use other tricks at your disposal to make your page unique and save the big guns that are Flash and Java for times where it is essential.

6. Tags

The “tags” I am referring to hear are meta keywords and description, title, alt and h1 tags. Together these tags help manage your sites search engine optimisation (SEO) potential and this is defiantly something not to overlook. Helping people find your site will bring more traffic in and more conversion if you are a retail site.

The higher search engines rank you the more traffic will filter down and the more successful your site will be. Try to keep a constant theme running through all your tags but do so in a subtle way. Splashing the same word 1000 times on your page will only have negative effects so make sure you strike the correct balance between informative and spammy.

7. Browsers

In a perfect world everyone would use the same browser and your website would look the same on everyone’s screen but unfortunately this is not the case. Every browser has its own specific functions and styles and learning to make you code cooperate with both can present some serious problems.

The three you really need to concern yourself with are Internet Explorer, Firefox and Safari. These make up a good 95% of the browser market at the very least and while there are some additional popular browser I would not recommend you spend time optimising code for the rest.

The only thing you can do is do your best and stay away from browser specific functions, you’ll never make someone get a new browser.

8. Pop Ups

Something that is very important to remember is that the user should be in control of their browser and desktop. Do not place unnecessary pop ups and window opening links everywhere and the user will feel they have lost control of the site, become annoyed and close the windows.

There are some exceptions to using the (_blank) attribute but I would steer clear whenever possible.

9. Text Layout

Text is part of your design to and positioning it correctly on the page is very important. Try to get all the copy you need as early in the design process as possible. This means you will be able to design around the copy instead of trying to cram it into smaller spaces because someone wrote twice as much copy as they said they were going to.

Use the right alignment for the right situation, remember 99% of people will prefer left align and while justified look aesthetically better it can be very difficult to read in longer bouts.

10. Site Search

In this day and age finding what you want on a website in paramount. After you have followed the first tip on navigation you should also provide a search bar on your site so that a visitor who cannot immediately see what they are looking for can search. Many internet studies have seen the success of these smaller additions to your site and free ones are available from Google and many other SE operators.

Conclusion

Taking these 10 tips into account will help you design a more user-friendly and successful website, sometime it may seem like they are hindering your grand design but failing to take notice may result in your site being a very pretty stop sign for browsers. Just because you can find your way around your Flash menu system that takes 6 minutes to load doesn’t mean Mrs Smith who needs the product can.

About The Author
Frank Woodford is a professional copywriter who has a vast experience at producing design based articles. He has worked closely with many businesses over the years including Soula Web Design Nottingham, who keep a web design blog, you can find these at http://www.soula.com