Hi @Maik,
As you see, this required custom coding/development. I understand it is fairly simple but custom code becomes a maintenance problem overtime. That is because a user might come into this thread, copy the code and if it will not work in his or her site, he or she will most probably post a support question why it doesn’t work then we’ll investigate the website while it should not be our responsibility in the first place. As a result, it is adding in to the support questions so this is one of the reasons of long waiting times.
This code jQuery('.hm5.x-image img').attr('title', 'Home');
is specific only to your header. A user might use it in his site and it will not work. I recommend you and anyone else reading this to add a class like add-title
to the image element and use jQuery('.add-title img').attr('title', 'Home');
instead to make it reusable. You can do stuff like this in X/Pro because of the Class option. For more details about the jQuery attr
method, please see their documentation.
This also uses Javascript so this might not work if there’s Javascript conflict in your site so that is something to keep in mind.
I’ve submitted a feature request to add an official title option for the image element. Please stay tuned if this will be added in the future.
Thanks.