[l2h] Icons in Navigation

Tanja Wittke tawi@gruft.de
Wed, 2 Oct 2002 16:37:07 +0200


Hello,

I have the following problem:

I want to use my own icons in the topnavigation, so I created some nice
.gif-files and put them into my pics-directory. In the directoy where I
generate my HTML-files, I have a .latex2html-init . I included the
following lines:

$LOCAL_ICONS = 1;
$ALTERNATIVE_ICONS = "../pics/";

%icons =				
(
  'up' ,               'up.gif',
  'up_inactive',       'up_g.gif',
  'next',              'next.gif',
  'previous',          'prev.gif',
  'previous_inactive', 'prev_g.gif',
  'contents',          'contents.gif',
);

This doesn't work, l2h still uses .png-files which are located in the
original l2h-directory (/usr/local/share/lib/latex2html/icons).

I also tried 

%icons =				
(
  'up' ,               '../pics/up.gif',
  'up_inactive',       '../pics/up_g.gif',
  'next',              '../pics/next.gif',
  'previous',          '../pics/prev.gif',
  'previous_inactive', '../pics/prev_g.gif',
  'contents',          '../pics/contents.gif',
);

in my local .latex2html-init, but this doesn't work either.
What do I have to do to make l2h use my icons instead of the original
ones?

Thank you in advance,

Tanja Wittke