erich37
Well-known member
why is XenForo using "ALT" instead of "Title" for Avatars and possibly in other places as well ?
I am using FireFox-browser and the "ALT-tag"-text is not showing up when browsing with FireFox.
I would suggest changing:
towards:
So for some images like the Forum-Node-icon, XenForo is using the "title-tag", which is showing fine in Firefox, like e.g. here:
.... but for other images, XenForo is using the "alt tag", which is not showing up in FireFox.
http://www.computerhope.com/issues/ch001076.htm
http://stackoverflow.com/questions/872389/html-img-tag-title-attribute-vs-alt-attribute
I am using FireFox-browser and the "ALT-tag"-text is not showing up when browsing with FireFox.
I would suggest changing:
Code:
<img width="48" height="48" alt="EQnoble" src="data/avatars/s/1/1321.jpg?1367481160">
towards:
Code:
<img width="48" height="48" title="EQnoble" src="data/avatars/s/1/1321.jpg?1367481160">
So for some images like the Forum-Node-icon, XenForo is using the "title-tag", which is showing fine in Firefox, like e.g. here:
Code:
<span class="nodeIcon" title="Unread messages"></span>
.... but for other images, XenForo is using the "alt tag", which is not showing up in FireFox.
http://www.computerhope.com/issues/ch001076.htm
http://stackoverflow.com/questions/872389/html-img-tag-title-attribute-vs-alt-attribute
Last edited:
Upvote
0