We're trying to do SEO on our company website. Our company logo is just text (in image form), but has two colors in it. Our company name appears a lot in our website text/copy. For example, the sentence,

This is our company name: COMPANY.

is coded as,

This is our company name: <span class="logo_black">COMP</span><span class="logo_red">A</span><span class="logo_black">N</span><span class="logo_red">Y</span>.

Is it search engine friendly? If not, any suggestions?

link|improve this question
feedback

migrated from stackoverflow.com May 3 '11 at 10:50

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 8 down vote accepted

This isn't very friendly. Search Engines can understand the content but might not be able to consider COMPANY as one single word.

My suggestion is to use JavaScript. You can write something like

This is our company name: <span class="company">COMPANY</span>.

Then use JavaScript to

  • load the content of the .company class
  • split/stylize the content of the element according to your custom rules

If you already use a JavaScript framework like jQuery, it shouldn't be much work.

link|improve this answer
1  
+1 Google and Bing will treat each portion wrapped in a <span> as a separate word (learned this the hard way on a personal site when using span tags to create drop caps) – danlefree May 3 '11 at 11:06
feedback

I don't know anything about Java or CSS, but I know SEO marketing.

I would recommend adding some alt text to the logo with your company name and slogan in the alt text. Chances are, people aren't necessarily searching for YOUR COMPANY, but rather a problem, which your company has the solution to. Think of your keywords as what the user is searching for.

link|improve this answer
"SEO marketing" - marketing search engine optimization services..? – danlefree May 3 '11 at 11:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.