In sidebar_stories.tpl i have:
Code:
<div class="sstories">
<span class="count_total"><a href="{$story_url}">{$link_shakebox_votes}</a></span>
</div>
<a href="{$story_url}" class="switchurl">{$title_short}</a>
And in sidebar_stories_u.php and sidebar_stories.php i have:
Code:
$ss->TitleLengthLimit = 28;
What i want is to have a title text (when you hover the mouse over the title) that do not get truncated, but shows the complete title. But when i do the following, the {$title_short} in the HTML title of course get truncated:
Code:
<div class="sstories">
<span class="count_total"><a href="{$story_url}" title="{$title_short}">{$link_shakebox_votes}</a></span>
</div>
<a href="{$story_url}" class="switchurl" title="{$title_short}">{$title_short}</a>
What else then {$title_short} can i use in the HTML title="" so that it don't get truncated? (The code in red color is the title that i don't want to get truncated.)