I see the foollowing two lines:
#navbox ul, li{display:block;margin:0;padding:0 0 0 0;}
and
#buttons ul, li{display:block;margin:0;padding:0 0 0 0;}
Both do not declare (#navbox ul) And (#navbox li),
instead (#navbox ul) And (li)
If I kill both 'li' or change them to the undefined 'lis', the error
is away.
Use instead:
#navbox ul, #navbox li{display:block;margin:0;padding:0 0 0 0;}
and
#buttons ul {display:block;margin:0;padding:0 0 0 0;}
#buttons li {display:block; margin-left:1em;padding:0;}
On my own domain, the margin:0;padding:0 also didn't work.
Best Regards
Juergen Auer
******************************************************
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
******************************************************