Hi Pete,
I ran into the same problem some time ago when I started with WB v1.
From a trustful source I received the following email with information, and that solved the problem:
Quote:
Open the 'gallery.css' CSS template (in the 'slides/lib' sub-directory) and remove the 5 first lines at the top of the template:
> * {
> font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans",
> Verdana, Arial, sans-serif;
> color: #333;
> line-height: 140%;
> }
The asterisk ('*') should not be used in any CSS templates other than the main site-wide 'styles.css'. In CSS template - the asterisk ('*') implies the properties defined within the brackets ('{}') will be passed on throughout the page (and replaced whatever properties had already been defined).
For example, the 'styles.css' CSS template defined the default font-family property for the the complete page (anything included between the two '<body>'
tags) as being 'Arial, Helvetica, sans-serif', the default font-size as being
'10 points' and the default line-height as being '18 pixels'.
Then, comes in the 'gallery.css' CSS template and, with the asterisk ('*') (implies to change everything from now on) changes the default properties previously defined, the font-family property is now being changed to 'Lucida Grande, Lucida Sans Unicode, Lucida Sans, Verdana, Arial, sans-serif' and the default line-height is now being changed to '140%'.
Unquote
Hope this helps,
Cheers,
Arthur