Free Search Engine Visibility Report

Newsletter Sign Up

First Name:

Last Name:

Email:

 

SEO Client
Results

Don't take our word for it, see our SEO results for yourself. When selecting a SEO firm make sure to ask for examples of their rankings. We only employ ethical SEO practices (white hat SEO practices) to achieve the best results for our clients.

View Results »

Articles written in May, 2009

Domain Misconfigurations and Duplicate Content

http://www.morevisibility.com/seoblog/domain-misconfigurations-and-duplicate-content.html May 15th, 2009 by

An often overlooked part of establishing a web presence is not paying close attention to how a domain name is configured. Usually, we buy a domain name from a registrar, buy some hosting, and then point that domain name to the host, using the registrar’s control panel. However, some registrars or hosts, contain a wildcard setting that will allow all possible combinations of subdomains to resolve back to your main domain. For example, imagine you buy a domain called example.com. Typically, you would want users to browse the site in one of two ways:

http://example.com
http://www.example.com

Ideally, you would want the non-www to 301 redirect to the www version, otherwise you would have duplicate content. However, sometimes there are wildcard subdomains enabled by default in registrar or hosting control panels. Typical settings for a domain configuration will look like this:

Chart

The problem with the above settings lies in the “* (All Others)” wildcard setting. This basically says “route any subdomain to the main domain.” So all possible combinations will lead back to the main website:

http://wwww.example.com
http://abc.example.com
http://spam.example.com
http://duplicatecontent.example.com

The list could go on and on and could get downright nasty. Basically, what this means is that someone could create a page that links to all these subdomain variations and those pages will get indexed by search engines, which will create duplicate content for your website. That is why it is imperative to make sure that your domains are not configured this way.

Posted in SEO & Technology

Using Video to Your Advantage

http://www.morevisibility.com/seoblog/using-video-to-your-advantage.html May 14th, 2009 by

Videos, if optimized, can be a useful tool to market your products, services and business.  Videos often rank well in the search results pages and can provide another way for your audience to engage with your brand.  If videos are an integral part of your online marketing strategy, there are a few video optimization tips that you should take into consideration.

First, do you know where your videos will be hosted?  If you are not sure or haven’t decided, think about why you are creating videos in the first place.  Is it to increase views of the video or to bring traffic to your website?  If your goal is to attract more visitors to your website, it will make the most sense to have the video hosted on your website. When videos are hosted on your website, you create an opportunity for your site to position in the search results for that video. On the other hand, if you want to have as many viewers as possible, it will certainly be in your best interest to upload your videos to YouTube and possibly other video sharing sites as well.

Utilize keyword-rich titles, descriptions and tags for your videos. This will help your video to not only be found more easily on video sharing sites, but it will also create the opportunity for your video to appear in the universal search results for those keywords.

To make your videos more enticing, especially amongst thousands of other videos on sites such as YouTube, use catchy titles that viewers will want to click on.  Keywords in the titles can also help with search engine rankings, but be sure that they are descriptive in nature.  Also utilize the thumbnail to attract more viewers.

Remember your audience. Keep in mind that most people will watch videos for only a few minutes, if that.  If you have a lot content that you want to cover, consider breaking the information into a few shorter, condensed videos or playlists.

There are also ranking factors that can play a role with your videos’ visibility on video sharing sites. We have found that YouTube, for instance, places importance on engagement and community factors when determining video rankings (i.e. views, ratings, comments, etc.).  Interact with other videos by posting comments, and when comments are posted on your videos, reply where appropriate. Also take a look at your competitors.  Are they doing anything in particular to have more views, ratings, and comments on their videos?

Another factor that can provide a boost to your video optimization efforts is the quantity and quality of links from external sites.  If you are familiar with search engine optimization (SEO), this should not be surprising.  Creating videos that are interesting and the type that others will want to link to can make acquiring external links to your videos much easier.

Lastly, think about the goals for your video.  What are the next steps that your audience should take?  Maybe you want them to remember your brand, your URL, your phone number, or even simply view another video.  Whatever it is that you want them to do, make sure that the call to action is prominent.

Posted in SEO & Marketing

Implementing Advanced Accessibility

http://www.morevisibility.com/seoblog/implementing-advanced-accessibility.html May 13th, 2009 by

After a hiatus, I’m back to give you what I promised: a discussion of advanced tips to help increase your site’s accessibility. One important thing I mentioned in my last post is that if you design or optimize your pages with accessibility as a goal, you may not only gain more visitors, but you will be helping your SEO efforts a great deal.

Keep in mind also, that accessibility not only includes catering to people with disabilities, but to people using non-mainstream browsers. This can include Web TV, Playstation or Nintendo Wii consoles as well as the large variety of cell phone browsers and other operating systems such as the Mac OS and Linux. All these varieties of browsers (most of the modern browsers anyway) endeavor to support the web standards, and the best way to cater to all of them at once it to support web standards in your front-end code (this includes HTML and CSS) and make sure your Javascript is error-free.

I validate (X)HTML and CSS code using the W3C validators. For HTML validation, visit http://validator.w3.org. I typically use the Validate by URI or Validate by Direct Input tabs, and before I run the validation, I make sure Show Source is checked under More Options. This helps to quickly jump to the line of code the error reports mention. You also have the option of listing error messages sequentially or by error type. Be sure to check out their list of error messages and their interpretation page because the error messages aren’t the easiest to understand.

To validate CSS, visit http://jigsaw.w3.org/css-validator. This tool will validate both CSS-only files and HTML files with CSS embedded.

It often happens in web development (and I believe in other industries as well) that increasing the user experience for disabled visitors increases the user experience for non-disabled visitors. One example of this is when you are creating forms (i.e. places that allow the user to enter information and submit their information to you.)

The current version of HTML (4.01) provides several notable features for user experience enhancements of forms. There is the tabindex attribute that allows the user to use the tab key on the keyboard to navigate sequentially through the entire form without using a mouse. The accesskey attribute is similar to the tabindex, but allows the user to instantly get to a text box (or any input area of the form for that matter). There is also the label tag that makes using forms easier: without the label tag, the user will usually have to click (barring the use of tabindex or accesskey) on the input (i.e. any form area that allows the user to enter information or choices into the form). If the input is small (especially relevant to radio inputs, the small circles that allow multiple choice questions), it can be hard for some users to position the mouse precisely enough and hold it still when they click the radio inputs. This may sound far-fetched, but I have witnessed this personally when training people on basic computer skills. The label tag is designed to allow the text describing the input to be clicked on which then activates the input. One easy way to use the label tag is like this:

label_tag_example_html

It will look like this in a browser:

10pounds

Now when a user clicks on “25 pounds,” the appropriate radio input will be checked.
Another accessibility tip for your web site is especially relevant if you are using any type of Javascript. First, always use the noscript tag, which, in the words of W3C, “allows authors to provide alternate content when a script is not executed.” Also, as websites are using more and more Javascript, what may often happen with browsers that are set to not use Javascript or browsers that cannot use Javascript, is that basic abilities to navigate the site become broken. For example, a user may not be able to go forward or backward in their history when clicking on a Forward or Backward button on the web page. Javascript may become so obtrusive that some web sites, even when viewed in browsers with Javascript enabled, will “break” the browser’s own forward or backward buttons. For more information about obtrusive Javascript, see the A List Apart article, Behavioral Separation.

I mentioned the Web Developer Toolbar in a previous post and want to briefly show how to use a few features.

First, you need the Firefox web browser. Visit www.getfirefox.com to download and install it.

Then, use Firefox and visit the page for the Web Developer Toolbar, https://addons.mozilla.org/en-US/firefox/addon/60.
To show the alternative text of any images, click the Images button in the toolbar and choose Display Alt Attributes. Also under the Images button, you can choose Disable Images > All Images to get a good idea of how well your page conveys its non-textual images.

Toolbar

To disable all CSS on the page, click the CSS button (two buttons to the left of Images) and choose Disable Styles > All Styles.
I look forward to seeing your fresh, new and accessible web pages soon. I hope this series has been informative and usable.

Posted in SEO & Technology

« Previous Entries Next Entries »


Subscribe rss feed Login or Register

Recent Articles

Article Categories

Articles by Month

Related Sites


Inc 5000 Google Analytics Authorized Consultant Google Qualified Company Microsoft adExcellence Member Greenified 2009

MoreVisibility
925 South Federal Highway, Suite 750
Boca Raton, FL 33432 www.morevisibility.com

800.787.0497

ph: 561.620.9682

fx:  561.620.9684


© 1999 - 2012 MoreVisibility ® All Rights Reserved. Privacy | Legal

MoreVisibility Social Networking Links Google+ YouTube LinkedIn Facebook Twitter