Mobile app version of vmapp.org
Login or Join
Murray155

: SEO strategy for h1, h2, h3 tags for list of items On a page on my website page I have a list of ALL the products on my site. This list is growing rapidly and I am wondering how to manage

@Murray155

Posted in: #Seo

On a page on my website page I have a list of ALL the products on my site. This list is growing rapidly and I am wondering how to manage it from an SEO point of view. I am shortly adding a title to this section and giving it an H1 tag.

Currently the name of each product in this list is not h1,2,3,4 its just styled text. However I was looking to make these h2,3,4.

Questions:


Is the use of h2,3,4 on these list items bad form as they should be used for content rather than all links?
I am thinking of limiting this main list to only 8 items and using h2 tags for each name. Do you this this will have a negative or possible affect over all.
I may create a piece of script which counts the first 8 items on the list. These 8 will get the h2, and any after that will get h3 (all styled the same).
If I do add h tags should I put just on the name of the product or the outside of the a tag, therefore collecting all info.
Has anyone been in a similar situation as this, and if so did they really see any significant difference?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Murray155

2 Comments

Sorted by latest first Latest Oldest Best

 

@Carla537

DisgruntledGoat's answer is good, but I'd like to add an answer to a question you should've asked: How do I let Google recognize things like product names on my pages?

Actually, there are several ways to do that, but the one I'd recommend is microdata. For example, for your site you could use the Product and Offer schemas from schema.org, something like this:


<div class="listItem" itemscope itemtype="http://schema.org/Product">
<a itemprop="url" title="Tannoy V4" href="/speakers/1/tannoy-v4">
<div class="left">
<img itemprop="image" width="173" height="130" alt="" src="images/small/TANNOY-V4.jpg">
</div>
<div class="mid">
<div class="title" itemprop="name">
<span itemprop="brand">Tannoy</span> <span itemprop="model">V4</span>
</div>
<div class="starRating" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<img width="183" height="32" alt="Five Star Rating" src="images/interface/5.gif">
<meta itemprop="ratingValue" content="5" />
</div>
</div>
<div class="right">
<div class="now" itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span class="listNow">Now <span itemprop="price">£280</span></span>
</div>
<div class="save">
<span class="listSave">Save £70</span>
</div>
</div>
<div class="clear"></div>
</a>
</div>


(If that example HTML looks familiar, it's because I grabbed it off your site and just added the bits in boldface.)

That said, while marking up items in lists shouldn't do any harm, what you really should do is add this kind of microdata markup to the individual product pages. That way, Google can use it to generate rich snippets for your pages when they appear in search results. For more information, see Getting started with schema.org.

10% popularity Vote Up Vote Down


 

@Cofer257

You are massively over thinking this, and most of what you suggest will make little to no difference.

There should be one H1 tag per page, which is the main title of the page, eg "Speaker systems".

Then each H2 should separate sections. In your case you could use an H2 for the name of each product (just the name, not the entire list block).

Lower headings should only be used if you further divide sub-sections are are rarer in practice.

To answer your questions more directly:


Yes it is bad form.
This is the proper way to do it, although you don't need to limit to 8. Around 20-30 items per page is generally expected.
Waste of time.
Just the name as stated above.
It doesn't make a big difference. H1 is most important, H2 may have a bit of weight, but after that there is no difference.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme