March 23, 2011

SEO Friendly Content

SEO Friendly Writing Does Not Mean Writing for Search Engines

The first and foremost thought in your mind when working on content for your Web pages is that you're writing for people not for search engines. If you have to choose between a technique that is good for your readers but not so good for search engines or vice versa, choose that which is good for your readers. Search engines ultimately want to provide content that is interesting and informative for their customers too, and a page that is too optimized is no fun to read.

Luckily, most of the techniques that make good Web writing make for decent SEO as well.

  • Write relevant content. Search engines have ways of recognizing when a page is not really about what it might seem to be about. If you're playing games with your content to try and fool search engines, it will eventually be found and you'll lose rank or even be banned. It's much better to write content that is relevant to your topic.
  • Put conclusions at the beginning. Another way to think of this is that you want your keywords to be denser towards the top of your article. If your page is about snow leopards, then the first mention of snow leopards should be in the title and first sentence. Don't start using synonyms for your keyword phrase until the second or third paragraph.
  • Use lists instead of paragraphs. Lists are easier to get your seo content into without your repetition seeming strange.
  • Make your links part of the copy. This is especially important if your links include your keyword phrases. If you've linked to the Snow Leopart Trust on your snow leopard page, make sure that you link the words "Snow Leopard Trust" and not something unrelated like "click here".
  • Include internal sub-headings and they should include your keyword phrase. Use heading tags for your sub-heads, and repeat your keyword phrase.
  • Proofread your pages. It doesn't do any good to focus on the keywords "snow leopard" if you spell it "snow leopart" once or twice on the page. Plus, the spelling and grammar errors make your content look unprofessional, so people are less likely to link to your page.

Other Considerations for SEO Friendly Content

Repetition is very important for SEO friendly content. Once you've chosen your keyword phrase, you want to repeat it several times throughout the page. For instance: 2 times in the first paragraph, in every sub-heading, once in the main heading, twice in the meta title, 2-4 times more throughout the document, and at 2-3 times in links and image alt text on the page.

Don't forget to use bold, heading tags, and other emphasis HTML tags to highlight your keyword phrases. But don't overdo it. If someone can tell exactly what your keyword phrase is without doing more than opening the Web page, you've probably included it too often or made it too emphasized. Remember, you're ultimately writing for people, not a search engine.

Don't forget less obvious locations for including your keyword phrase - like image alt text and title text on images and links. These are not hidden from your readers - anyone can see them who wants to. They are just not obvious at first glance, so they are less annoying to your readers but search engines still see them.

SEO Friendly Should Not be Bad Writing

As I said above, you should never sacrifice good writing for SEO. Most of the best ranked articles on nearly any topic you can name (Wikipedia notwithstanding) are written for customers first and SEO is at best a second or third thought.

March 22, 2011

WordPress CSS troubleshooting

With the introduction of the new Themes in WordPress v1.5, boring and commonplace website layouts have become a thing of the past. With a few clicks, you can change your layout instantly. With a few more clicks and tweaks, you can screw up your layout instantly as well. Welcome to the exciting world of web page design.

When you encounter a screw-up in your layout, many people come running to the WordPress Forums. While the willing volunteers can do what they can to help you, there are some steps you can take to get to the solution, or at least a better idea of where the problem may lie, before you get to the Forums.

Know Before You Go
We have a list of things you need to know before you go to the forums with layout design problems, and tips on solving the problems yourself.

Examine Your HTML and CSS
Take a close comparative look at your HTML and CSS and make sure that all the references match.

Isolate Your CSS Challenges
Below we'll show you a couple of techniques to help identify the areas that are causing your problems in an effort to narrow down the problem to a specific area and code.

Common CSS Errors
You are not the first to have this problem. We have a list of some of the most common CSS errors to help you fix the little details that can mess up your layout.

Pest Control - Watching Out For Browser Bugs
we will help you identify some of your CSS challenges, a lot of them come from bugs and conflicts between browsers, so we'll give you some tips on how to work around the various browser bugs.

It is the goal of this article to help you solve your layout design problems within the CSS file, not within the HTML or PHP files. For help on modifying those, check out Using Themes for more information.

Web, Graphic Designing SEO in Indore: Choosing Website colors

Web, Graphic Designing SEO in Indore: Choosing Website colors

CSS clearfix property

The problem happens when a floated element is within a container box, that element does not automatically force the container’s height adjust to the floated element. When an element is floated, its parent no longer contains it because the float is removed from the flow. You can use 2 methods to fix it:

Use it
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}

.clearfix {
display: inline-block;
}

html[xmlns] .clearfix {
display: block;
}

* html .clearfix {
height: 1%;
}