Next: Hyperlinks   Previous: Numbered or Not Numbered Headlines   Contents: Contents

Size of a Logo Image

Question:

How can I influence the size of my own logo image? The problem is the following:

I use the predefined pp_book style which comes with its own logo image. Now I have replaced this, using the following option:


  --logo_image_file_name "My_logo.gif"

The problem is, that my logo image is too big.

Answer:

Use the following trick:


  --logo_image_file_name 'My_logo.gif" width="70'

Discussion:

In the template file there is the following HTML construct:


 <IMG SRC="LOGO_IMAGE_FILENAME">

Guess what happens: The LOGO_IMAGE_FILENAME is replaced with all what's between the single quotes in the --logo_image_file_name option. The result is:


 <IMG SRC="My_logo.gif" width="70">
Next: Hyperlinks   Previous: Numbered or Not Numbered Headlines   Contents: Contents