On 30/10/2006 10:37, morten fjellman wrote:
> 
> The default css is:
> h1 a {
>     font-size:42px;
>     margin-bottom:5px;
>     font-family: Arial Black, Helvetica, sans-serif;
>     line-height:1.4em;
>     }
> 
> (the heading is also a link, hence the "a")
> 

Never heard of the other bugs you mention, but I can tell you from 
looking at your code that you should be quoting the Arial Black string 
like so:

h1 a {
        ...
        font-family: "Arial Black", Helvetica, sans-serif;
        ...
}

All font names containing spaces should be quoted as such--it's only 
strings without spaces that can get away with not being quoted.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to