icon tooltips don't show in firefox
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Feedback
- :
- Community Site Feedback
- :
- icon tooltips don't show in firefox
icon tooltips don't show in firefox
03-08-2007 6:23 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Example is the top and bottom banners with 'post a reply' and 'printer' icons. None of the icons show a tooltip on FF but they do on IE7. Given the fact that they are not all obvious what they mean, the tooltip is necessary.
Some areas do work like hovering over a member name.
Re: icon tooltips don't show in firefox
03-08-2007 9:59 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: icon tooltips don't show in firefox
15-11-2007 6:10 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: icon tooltips don't show in firefox
15-11-2007 6:17 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
I know this is a general problem with tags and the solution may not be possible (add title tags where alt tags exist) but it is still a browser related issue.
Re: icon tooltips don't show in firefox
16-11-2007 8:38 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
<a href="http://community.plus.net/forum/index.php?action=profile;u=1042">
<img src="http://community.plus.net/forum/Themes/plusn/images/icons/profile_sm.gif"
alt="View Profile" title="View Profile" border="0"></a>
<a href="http://community.plus.net/forum/index.php?action=useremail;u=1042">
<img src="http://community.plus.net/forum/Themes/plusn/images/email_sm.gif"
alt="Email" title="Email" border="0"></a>
<a href="http://community.plus.net/forum/index.php?action=pm;sa=send;u=1042" title="Personal Message (Offline)">
<img src="http://community.plus.net/forum/Themes/plusn/images/im_off.gif"
alt="Personal Message (Offline)" border="0"></a>
[quote=W3C.org]
13.8 How to specify alternate text
Attribute definitions
alt = text [CS]
For user agents that cannot display images, forms, or applets, this attribute specifies alternate text. The language of the alternate text is specified by the lang attribute.
Several non-textual elements (IMG, AREA, APPLET, and INPUT) let authors specify alternate text to serve as content when the element cannot be rendered normally. Specifying alternate text assists users without graphic display terminals, users whose browsers don't support forms, visually impaired users, those who use speech synthesizers, those who have configured their graphical user agents not to display images, etc.
The alt attribute must be specified for the IMG and AREA elements. It is optional for the INPUT and APPLET elements.
While alternate text may be very helpful, it must be handled with care. Authors should observe the following guidelines:
* Do not specify irrelevant alternate text when including images intended to format a page, for instance, alt="red ball" would be inappropriate for an image that adds a red ball for decorating a heading or paragraph. In such cases, the alternate text should be the empty string (""). Authors are in any case advised to avoid using images to format pages; style sheets should be used instead.
* Do not specify meaningless alternate text (e.g., "dummy text"). Not only will this frustrate users, it will slow down user agents that must convert text to speech or braille output.
Implementors should consult the section on accessibility for information about how to handle cases of omitted alternate text.
[quote=w3c.org]7.4.3 The title attribute
Attribute definitions
title = text [CS]
This attribute offers advisory information about the element for which it is set.
Unlike the TITLE element, which provides information about an entire document and may only appear once, the title attribute may annotate any number of elements. Please consult an element's definition to verify that it supports this attribute.
Values of the title attribute may be rendered by user agents in a variety of ways. For instance, visual browsers frequently display the title as a "tool tip" (a short message that appears when the pointing device pauses over an object). Audio user agents may speak the title information in a similar context. For example, setting the attribute on a link allows user agents (visual and non-visual) to tell users about the nature of the linked resource:
...some text...
Here's a photo of
<A href="http://someplace.com/neatstuff.gif" title="Me scuba diving">
me scuba diving last summer
</A>
...some more text...
The title attribute has an additional role when used with the LINK element to designate an external style sheet. Please consult the section on links and style sheets for details.
Reading those it is quite clear that the way Firefox is handling alt and title is correct and IE is wrong (well there's a surprise!).
jelv (a.k.a Spoon Whittler) Why I have left Plusnet (warning: long post!) Broadband: Andrews & Arnold Home::1 (FTTC 80/20) Line rental: Pulse 8 Home Line Rental (£14.40/month) Mobile: iD mobile (£4/month) |
Re: icon tooltips don't show in firefox
09-01-2008 1:22 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
So, I had a look and some of the icon tooltips can be fixed by editing the Sources/Display.php file. At least those within a topic. The Reply, Print, must be in a different file, but the theme I use on my forum displays text for those links rather than icons.
Do a search for alt=" in half a dozen places (as there are other images like the BCC tags) and replicate the part of the script that generates the text for the alt tag as a title tag.
For example -
Where you find:
alt="' . $txt[$alt] . '"
You can replace it with:
alt="' . $txt[$alt] . '" title="' . $txt[$alt] . '"
I've tried it on my own forum and it works...
Until the next SMF update.
Re: icon tooltips don't show in firefox
09-01-2008 8:26 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
We can't be the only one complaining about this but the more pressure put on SMF the more likely they will fix it properly.
Re: icon tooltips don't show in firefox
09-01-2008 8:39 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
If everything worked first time every time it wouldn't be IT.
Running FireFox 2.0.0.11 BTW
To argue with someone who has renounced the use of reason is like administering medicine to the dead - Thomas Paine
Re: icon tooltips don't show in firefox
10-01-2008 10:42 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
It only takes a few minutes to edit the script and, as it's not affecting the logic of the script, it shouldn't be very risky.
Any volunteers?
Re: icon tooltips don't show in firefox
18-02-2008 9:22 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: icon tooltips don't show in firefox
18-02-2008 9:27 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
jelv (a.k.a Spoon Whittler) Why I have left Plusnet (warning: long post!) Broadband: Andrews & Arnold Home::1 (FTTC 80/20) Line rental: Pulse 8 Home Line Rental (£14.40/month) Mobile: iD mobile (£4/month) |
Re: icon tooltips don't show in firefox
18-02-2008 10:21 PM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
The items that were the topic of the original post are maybe not as relevant now that text links (with background images) are used (that's what I did in my own forum). 'spose that's up to OP?
However, I noticed that the post inline modification icon doesn't have a title tag. Not major, but it may not be intuitive what it's for?
Re: icon tooltips don't show in firefox
19-02-2008 7:43 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Quote from: jelv MSN messenger - - doesn't give a tooltip in FF2.
It does in IE7 - would there be any settings in FF preventing display?
Re: icon tooltips don't show in firefox
19-02-2008 9:32 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
Re: icon tooltips don't show in firefox
19-02-2008 9:36 AM
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Report to Moderator
http://www.w3.org/TR/REC-html40/struct/global.html#adef-title
Without included all of the history of this issue, the MSN Messenger image only has an ALT tag which was technically meant to be there for a different purpose, which does not include providing the text for use in a tooltip:
http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt
It works in IE7 because IE7 (and previous versions) were written to use the ALT tag in the absence of a TITLE tag, which I understand was a workround for those web sites that had omitted the TITLE tag.
It is not a setting in FF that is the problem, it is the HTML not providing the correct tag.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Plusnet Community
- :
- Forum
- :
- Feedback
- :
- Community Site Feedback
- :
- icon tooltips don't show in firefox