Sorry I took one more day.
I have not the time to create images yet but I like the graphical navigation and I will release that as an oddon in the future.
Create gif pictures for each letter (a - z, 0 - 9 an @ and 'all') eg. a.gif b.gif 0.gif @.gif and show_all.gif.
Place this pics a - z, 0 - 9 and @ in templates/subSilver/images/lexicon/ drawer and the 'all' icon in templates/subSilver/images/lang_xxx/lexicon/.
- Code: Alles auswählen
#
#----------[ OPEN ]-------------------------------------
#
templates/subSilver/subsilver.cfg
#
#----------[ FIND ]-------------------------------------
#
?>
#
#----------[ BEFORE, ADD ]------------------------------
#
// Lexicon navigation letters
$images['A'] = "$current_template_images/lexicon/a.gif";
$images['B'] = "$current_template_images/lexicon/b.gif";
$images['C'] = "$current_template_images/lexicon/c.gif";
$images['D'] = "$current_template_images/lexicon/d.gif";
$images['E'] = "$current_template_images/lexicon/e.gif";
$images['F'] = "$current_template_images/lexicon/f.gif";
$images['G'] = "$current_template_images/lexicon/g.gif";
$images['H'] = "$current_template_images/lexicon/h.gif";
$images['I'] = "$current_template_images/lexicon/i.gif";
$images['J'] = "$current_template_images/lexicon/j.gif";
$images['K'] = "$current_template_images/lexicon/k.gif";
$images['L'] = "$current_template_images/lexicon/l.gif";
$images['M'] = "$current_template_images/lexicon/m.gif";
$images['N'] = "$current_template_images/lexicon/n.gif";
$images['O'] = "$current_template_images/lexicon/o.gif";
$images['P'] = "$current_template_images/lexicon/p.gif";
$images['Q'] = "$current_template_images/lexicon/q.gif";
$images['R'] = "$current_template_images/lexicon/r.gif";
$images['S'] = "$current_template_images/lexicon/s.gif";
$images['T'] = "$current_template_images/lexicon/t.gif";
$images['U'] = "$current_template_images/lexicon/u.gif";
$images['V'] = "$current_template_images/lexicon/v.gif";
$images['W'] = "$current_template_images/lexicon/w.gif";
$images['X'] = "$current_template_images/lexicon/x.gif";
$images['Y'] = "$current_template_images/lexicon/y.gif";
$images['Z'] = "$current_template_images/lexicon/z.gif";
$images['0'] = "$current_template_images/lexicon/0.gif";
$images['1'] = "$current_template_images/lexicon/1.gif";
$images['2'] = "$current_template_images/lexicon/2.gif";
$images['3'] = "$current_template_images/lexicon/3.gif";
$images['4'] = "$current_template_images/lexicon/4.gif";
$images['5'] = "$current_template_images/lexicon/5.gif";
$images['6'] = "$current_template_images/lexicon/6.gif";
$images['7'] = "$current_template_images/lexicon/7.gif";
$images['8'] = "$current_template_images/lexicon/8.gif";
$images['9'] = "$current_template_images/lexicon/9.gif";
$images['@'] = "$current_template_images/lexicon/@.gif";
$images['show_all'] = "$current_template_images/{LANG}/lexicon/all.gif";
#
#----------[ OPEN ]-------------------------------------
#
includes/functions_lexicon.php
#
#----------[ FIND ]-------------------------------------
#
global $phpEx, $lex_cat_mode;
#
#----------[ INLINE FIND ]------------------------------
#
$lex_cat_mode
#
#----------[ INLINE AFTER, ADD ]------------------------
#
, $images
#
#----------[ FIND ]-------------------------------------
#
$letter_navigation .= '<font class="letter2"> '.chr($i).' </font>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$letter_navigation .= ' <img src="'.$images[chr($i)].'" height="25" border="0" alt="'.chr($i).'" title="'.chr($i).'" style="filter:alpha(opacity=100)"> ';
#
#----------[ FIND ]-------------------------------------
#
$letter_navigation .= '<font class="letter3"> '.chr($i).' </font>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$letter_navigation .= ' <img src="'.$images[chr($i)].'" height="20" border="0" alt="'.chr($i).'" title="'.chr($i).'" style="filter:alpha(opacity=10)"> ';
#
#----------[ FIND ]-------------------------------------
#
$letter_navigation .= '<a class="letter" href="'.append_sid("lexicon.$phpEx").'?'.LEXICON_KEY_URL.'='.chr($i).$lex_cat_mode.'"> '.chr($i).' </a>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$letter_navigation .= '<a class="letter" href="'.append_sid("lexicon.$phpEx").'?'.LEXICON_KEY_URL.'='.chr($i).$lex_cat_mode.'"> <img src="'.$images[chr($i)].'" height="20" border="0" alt="'.chr($i).'" title="'.chr($i).'" style="filter:alpha(opacity=70)" onMouseOver="this.filters.alpha.opacity=90" onMouseOut="this.filters.alpha.opacity=70"> </a>';
#
#----------[ FIND ]-------------------------------------
#
global $phpEx, $lex_cat_mode;
#
#----------[ INLINE FIND ]------------------------------
#
$lex_cat_mode
#
#----------[ INLINE AFTER, ADD ]------------------------
#
, $images
#
#----------[ FIND ]-------------------------------------
#
$extra_navigation .= '<font class="letter2"> '.chr($i).' </font>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$extra_navigation .= ' <img src="'.$images[chr($i)].'" height="25" border="0" alt="'.chr($i).'" title="'.chr($i).'" style="filter:alpha(opacity=100)"> ';
#
#----------[ FIND ]-------------------------------------
#
$extra_navigation .= '<font class="letter3"> '.chr($i).' </font>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$extra_navigation .= ' <img src="'.$images[chr($i)].'" height="20" border="0" alt="'.chr($i).'" title="'.chr($i).'" style="filter:alpha(opacity=10)"> ';
#
#----------[ FIND ]-------------------------------------
#
$extra_navigation .= '<a class="letter" href="'.append_sid("lexicon.$phpEx").'?'.LEXICON_KEY_URL.'='.chr($i).$lex_cat_mode.'"> '.chr($i).' </a>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$extra_navigation .= '<a class="letter" href="'.append_sid("lexicon.$phpEx").'?'.LEXICON_KEY_URL.'='.chr($i).$lex_cat_mode.'"> <img src="'.$images[chr($i)].'" height="20" border="0" alt="'.chr($i).'" title="'.chr($i).'" style="filter:alpha(opacity=70)" onMouseOver="this.filters.alpha.opacity=90" onMouseOut="this.filters.alpha.opacity=70"> </a>';
#
#----------[ FIND ]-------------------------------------
#
$extra_navigation .= '<font class="letter2"> '.chr(64).' </font>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$extra_navigation .= ' <img src="'.$images[chr(64)].'" height="25" border="0" alt="'.chr(64).'" title="'.chr(64).'" style="filter:alpha(opacity=100)"> ';
#
#----------[ FIND ]-------------------------------------
#
$extra_navigation .= '<font class="letter3"> '.chr(64).' </font>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$extra_navigation .= ' <img src="'.$images[chr(64)].'" height="20" border="0" alt="'.chr(64).'" title="'.chr(64).'" style="filter:alpha(opacity=10)"> ';
#
#----------[ FIND ]-------------------------------------
#
$extra_navigation .= '<a class="letter" href="'.append_sid("lexicon.$phpEx").'?'.LEXICON_KEY_URL.'='.chr(64).$lex_cat_mode.'"> '.chr(64).' </a>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$extra_navigation .= '<a class="letter" href="'.append_sid("lexicon.$phpEx").'?'.LEXICON_KEY_URL.'='.chr(64).$lex_cat_mode.'"> <img src="'.$images[chr($i)].'" height="20" border="0" alt="'.chr(64).'" title="'.chr(64).'" style="filter:alpha(opacity=70)" onMouseOver="this.filters.alpha.opacity=90" onMouseOut="this.filters.alpha.opacity=70"> </a>';
#
#----------[ OPEN ]-------------------------------------
#
lexicon.php
#
#----------[ FIND ]-------------------------------------
#
$first_letter_navigation .= '<b> - <font class=letter2>'.$lang['show_all'].'</a></b>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$first_letter_navigation .= '<b> - </b><img src="'.$images['show_all'].'" height="20" border="0" alt="'.$lang['show_all'].'" title="'.$lang['show_all'].'"></a>';
#
#----------[ FIND ]-------------------------------------
#
$first_letter_navigation .= '<b> - <a href="'.append_sid("lexicon.$phpEx?$lex_cat_mode").'" class="letter">'.$lang['show_all'].'</a></b>';
#
#----------[ REPLACE WITH ]-----------------------------
#
$first_letter_navigation .= '<b> - </b><a class="letter" href="'.append_sid("lexicon.$phpEx?$lex_cat_mode").'"> <img src="'.$images['show_all'].'" height="20" border="0" alt="'.$lang['show_all'].'" title="'.$lang['show_all'].'" style="filter:alpha(opacity=70)" onMouseOver="this.filters.alpha.opacity=90" onMouseOut="this.filters.alpha.opacity=70"></a>';
#
#----------[ SAVE AND CLOSE ALL FILES ]-----------------
#
# EoM
[center]
[- Edit: Code from post #8 includet -][/center]
Take a look at each new line of that code.
There is an height="xx" (xx is an 20 or an 25) in much lines. That will define the height witch the brwoser will use to show the Picture. Change it to an value witch will be better for you!
Zugefügt nach 9 Minute(n): Ouch

The code I will use in that changes are not compatible with the actual release of the lexicon.
Make this and it will work:
- Code: Alles auswählen
#
#----------[ OPEN ]-------------------------------------
#
includes/constants.php
#
#----------[ FIND ]-------------------------------------
#
define('POST_GROUPS_URL', 'g');
#
#----------[ AFTER, ADD ]-------------------------------
#
//<!-- BEGIN Lexicon v2 -->
define('LEXICON_KEY_URL', 'letter'); // in Lexicon v2.0.4 and lower the value was 'letter'
//<!-- END Lexicon v2 -->
That is a line from the upcoming release of the MOD.

Die deutsche Sprache ist Freeware, du kannst sie benutzen, ohne dafür zu bezahlen. Sie ist aber nicht Open Source, also darfst du sie nicht verändern, wie es dir gerade passt.