4 replies [Last post]
newdude
newdude's picture
User offline. Last seen 1 day 10 hours ago. Offline
rank Enthusiast
Enthusiast
Timezone: GMT-5
Joined: 2008-11-29
Posts: 176
Points: 265

i have a section of my page that features 16 different thumbnail hyperlinks like so:

  <div><a href="/products.php?cat=29" class="thumb"><img src="pics/thumbs/hark.gif" /></a></div>
  <div><a href="/products.php?cat=23" class="thumb"><img src="pics/thumbs/ftar.gif" /></a></div>
  <div><a href="/products.php?cat=21" class="thumb"><img src="pics/thumbs/thumb.gif" /></a></div>
  <div><a href="/products.php?cat=10" class="thumb"><img src="pics/thumbs/green.gif" /></a></div>
  <div><a href="/products.php?cat=13" class="thumb"><img src="pics/thumbs/blue.gif" /></a></div>
  <div><a href="/products.php?cat=15" class="thumb"><img src="pics/thumbs/chicks.gif" /></a></div>
  <div><a href="/products.php?cat=14" class="thumb"><img src="pics/thumbs/doubles.gif" /></a></div>
  <div><a href="/products.php?cat=12" class="thumb"><img src="pics/thumbs/mlh.gif" /></a></div>
  <div><a href="/products.php?cat=16" class="thumb"><img src="pics/thumbs/spnp_black.gif" /></a></div>
  <div><a href="/products.php?cat=18" class="thumb"><img src="pics/thumbs/sistine.gif" /></a></div>
  <div><a href="/products.php?cat=17" class="thumb"><img src="pics/thumbs/got.gif" /></a></div>
  <div><a href="/products.php?cat=19" class="thumb"><img src="pics/thumbs/road.gif" /></a></div>
  <div><a href="/products.php?cat=22" class="thumb"><img src="pics/thumbs/kiddie.gif" /></a></div>
  <div><a href="/products.php?cat=9" class="thumb"><img src="pics/thumbs/mens.gif" /></a></div>
  <div><a href="/products.php?cat=30" class="thumb"><img src="pics/thumbs/woman.gif" /></a></div>
  <div><a href="/products.php?cat=11" class="thumb"><img src="pics/thumbs/orange.gif"/></a></div>

would it be more seo friendly if i turned this into a ul? thanks!

Verschwindende
Verschwindende's picture
User offline. Last seen 6 days 10 hours ago. Offline
rank Guru
Guru
Timezone: GMT-5
Joined: 2009-10-09
Posts: 2037
Points: 2256

If it's a list of something

If it's a list of something then make it an unordered list. It has more to do with semantic meaning of the markup than it does with search engine readability.

<div> has no semantic meaning and I don't really see the point of wrapping each item in a separate <div>.

yet again.

CupidsToejam
CupidsToejam's picture
User offline. Last seen 2 weeks 1 day ago. Offline
rank Guru
Guru
Timezone: GMT-6
Joined: 2008-08-15
Posts: 2634
Points: 1552

agreed, it should be a list

agreed, it should be a list


First basic few steps in building a webpage
1. Gather and collect content.
2. Organize the content into meaningful semantic valid HTML
3. Design the prototype
4. Style using CSS

http://www.pixelbehavior.com

Hugo
Hugo's picture
User offline. Last seen 15 hours 8 min ago. Offline
rank Moderator
Moderator
Joined: 2004-06-06
Posts: 15096
Points: 2191

Quote: It has more to do with

Quote:

It has more to do with semantic meaning of the markup than it does with search engine readability.

Well said! It does need pointing out sometimes that things are not done simply for the sake of SEO but that the by-product of coding correctly, semantically with well formed markup, is that search engines will have less hassle reading the page.

Before you make your first post it is vital that you READ THE POSTING GUIDELINES!
----------------------------------------------------------------
Please post ALL your code - both CSS & HTML - in [code] tags
Please validate and ensure you have included a full Doctype before posting.
Why validate? Read Me

Schop
Schop's picture
User offline. Last seen 2 years 16 weeks ago. Offline
newbie
Timezone: GMT-4
Joined: 2009-10-15
Posts: 2
Points: 2

1. Yes, it should be a

1. Yes, it should be a list
2. Make sure you make a 'title' attribute for every tag