Lack of interest "title="{$xenOptions.boardTitle}"" to the header image.

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Vincent

Well-known member
I don't know in other browsers, but in FF 4 beta 6, the header image (xenforo logo) doesn't give an alt/title.

This is easy fixable by changing the following in the header template

PHP:
<img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" />

->

PHP:
<img src="@headerLogoPath" title="{$xenOptions.boardTitle}" alt="{$xenOptions.boardTitle}" />
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
Top Bottom