Mobile app version of vmapp.org
Login or Join
Welton855

: Image SEO with overlaid text? I have a single image that I am using repeatedly with different text overlaid. If you hover over this image it will also give you a tooltip with more information.

@Welton855

Posted in: #Images #Seo #Text

I have a single image that I am using repeatedly with different text overlaid. If you hover over this image it will also give you a tooltip with more information. Of course, the text overlaid could also be put in the alt tag, and the longdesc tag could have all the information in the tooltip. Is this advisable, or will google penalize it for duplicate content or otherwise going overboard?

For that matter, what about naming the file? Obviously if each of them has its own name they all have to be loaded as separate images, meaning load time will be increased; I assume that isn't worth it just for the benefit of a descriptive name?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Welton855

1 Comments

Sorted by latest first Latest Oldest Best

 

@Kristi941

You don't make any mention of the technique you're using, so there's some necessary vagueness here.

If the actual image is identical, then yes you should just reuse the one file.

If possible, put both strings directly in the markup and then use CSS/Javascript to display them as and where needed. That would give you both predictable crawlability, and maximize styling options. (You also didn't specify whether your text has markup, for example, which is troublesome in attribute values.)

Using the alt attribute is not appropriate for what you're doing here, as it's intended to actually replace the image if it doesn't load. It should describe the actual content of the image, not be some kind of title for it or whatever. Technically, the alt text is the image, if the visual representation happens to not load. From that perspective, changing it in different cases makes little sense.

If you want, though, you could stash the shorter overlaid text in the title attribute of the image instead of its own element; that seems relatively appropriate to your actual use case.

Support for longdesc is so poor I'm not aware of a single reference saying to use it for anything. It's also not even in the HTML5 spec, if that's a concern; you don't say what doctype you're using.

If you are using HTML5, then the longer description could be stored in a custom data attribute.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme