View Single Post
  #1 (permalink)  
Old 01-05-2009, 04:25 AM
dmwcons dmwcons is offline
WebProWorld Member
 
Join Date: Feb 2005
Posts: 36
dmwcons RepRank 0
Default Repetition in Alt Attributes

If I use an in-line unordered list as the basis for a very simple menu, do I risk any SE duplication penalty for a construction like this:

<div id="menubar">
<ul>
<li><img src="menu.gif" alt="Bullet" /><a href="index.htm">Home</a></li>
<li><img src="menu.gif" alt="Bullet" /><a href="news.htm">News</a></li>
<li><img src="menu.gif" alt="Bullet" /><a href="editorial.htm">Editorial</a></li>
<li><img src="menu.gif" alt="Bullet" /><a href="about.htm">About</a></li>
<li><img src="menu.gif" alt="Bullet" /><a href="contact.htm">Contact</a><img src="menu.gif" alt="Bullet" /></li>
</ul>
</div>

The menu.gif is always a very simple graphic used as a separator between items in, and as end stops to, the menu.

It is the assignment of the same ”Bullet” value to each of the alt attributes that concerns me.
Reply With Quote