News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

Add Title Attribute To SimplePortal Front Page

Started by Mick., September 11, 2013, 07:48:57 PM

Previous topic - Next topic

Mick.


According to World Wide Web Consortium (W3C) , the title attribute "offers advisory information about the element for which it is set." W3 goes on to state that "visual browsers frequently display the title as a "tool tip" (a short message that appears when the pointing device pauses over an object)." and "setting the [title] attribute on a link allows user agents (visual and non-visual) to tell users about the nature of the linked resource."

By default SimplePortal does not use the title attribute on its article page. With a simple bit, we can add this to the PortalArticles.php file.

Demo: Hover on article titles to see the tooltip.  http://idesign360.com/community

Open /Sources/PortalArticles.php and find:

'link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0">' . $row['subject'] . '</a>',


Replace with:

'link' => '<a href="' . $scripturl . '?topic=' . $row['id_topic'] . '.0" title="' . $row['subject'] . '" >' . $row['subject'] . '</a>',

TomW


Bigguy

Nice trick Mick, thanks. :) Your image is not showing btw.

amadeos


Advertisement: