-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

[EMAIL PROTECTED] wrote:
 > tr.bottom td.foodcolumn {background: url('img/nutri_chart_botleft.gif')
> no-repeat bottom left;}
> tr.bottom td.savingcolumn {background: url('img/nutri_chart_botright.gif') 
> no-repeat bottom right;}
> 
> which works fine in Firefox, but in IE6 the background colour from the 
> .odd/.even is reset. I've tried to set it to inherit but nothing seems to 
> work unless I hard code the colour into the .bottom elements which isn't 
> ideal because it's not known whether the .bottom row would be an .odd or 
> .even one (the number of entries might be variable). 
> 
> Any suggestions on the best way to achieve this?
Perhaps:
tr.bottom td.foodcolumn
{
  background-image: url('img/nutri_chart_botleft.gif');
  background-position: bottom left;
  background-repeat: no-repeat;
}
tr.bottom td.savingcolumn
{
  background-image: url('img/nutri_chart_botright.gif');
  background-position: bottom right;
  background-repeat: no-repeat;
}
Hopefully, this won't override the background-color set before.

Hope this helps,
Ricky
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (GNU/Linux)

iD8DBQFGoTdCZBKKLMyvSE4RAhBhAJ9OV2JCvEHx1SZhbp83+VaF5VqEigCdFD3X
ynDVEb3NofetTuhfgQ+hPWg=
=xX/A
-----END PGP SIGNATURE-----
______________________________________________________________________
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