On our category pages we display products like displayed below. It is semantically correct, as all the elements inside the link are inline elements - it would not validate if we had a
in there as that is a block-element. However, in order to be able to style them correctly, we have added "display: block;" in the stylesheet making it easier to work with.
[
Name
Price](link_to_product)
Does anyone know what this setup has of impact on Google picking up anchor text etc.? Technically, we have an image, a name, and a price, where normally only a name is displayed. Is there some way, in which we can specify what should be counted for/valued as the anchor text (in this case )?
Thanks