Patrick Ehrlich wrote:

> BTW howto use the background shorthand?  I am getting a lot css
> errors but I do not know how to use this the right way...

Most, if not all, of those validating-errors are related to mix of
'numeric values' and 'keywords' for background-position.

Example from your stylesheet:

Changing this...
#nav li ul li a:hover, #nav li ul li a.active {
      color: #eb002e;
      background: #f9f9f9 url(/common/images/bg_ul_ul_li_a_on.gif) 8px
center no-repeat;
      }

...to this...
#nav li ul li a:hover, #nav li ul li a.active {
      color: #eb002e;
      background: #f9f9f9 url(/common/images/bg_ul_ul_li_a_on.gif) 8px
50% no-repeat;
      }

...makes the validator happy and should work as expected... with
'horizontal' followed by 'vertical' positioning-value.

        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- 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