Mobile app version of vmapp.org
Login or Join
Merenda212

: Include img in href (with anchor text) or add a separate href? From the SEO point of view, which one of these two are better ? Considering this is a classifieds site with around 10 similar

@Merenda212

Posted in: #Images #SearchEngines #Seo

From the SEO point of view, which one of these two are better ?
Considering this is a classifieds site with around 10 similar listings/links per page.

Separate link for thumbnail and text title

<a href="/product.html">
<img src="/product.jpg" alt="product" />
</a>
<br /><a href="/product.html">product</a>


One link that contains both thumbnail and text title

<a href="/product.html">
<img src="/product.jpg" alt="product" />
<br />product
</a>

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Merenda212

2 Comments

Sorted by latest first Latest Oldest Best

 

@Jessie594

The benefit to using a separate link is tracking which link converts better. The image, or product name or title. Using event tracking with Google Analytics you'd be able to see which of the two were clicked on more often and which converted higher.

However if you view Zappos category pages, the image and title of product are both within the a tag. This may make it easier and quicker for shoppers to get to the product page
www.zappos.com/mens-socks-clothing~1
I doubt the internal links would have much effect on your rankings. There are far more important factors such as content and external incoming links.

10% popularity Vote Up Vote Down


 

@Moriarity557

It may make a mild difference to how the Page Rank flows around your site, but unless you are doing Page Rank sculpting then both are fine.

If you are doing Page Rank sculpting, then both are still fine but you may want to use a "nofollow" tag on one of the links, depending on the linked-to page's priority on the site.

I personally wouldn't worry about the SEO, but would have a preference for the second method simply because there is less repetition in the code, and so less places to change should the link be updated.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme