Please test if this issue appears for others. I know that the group I'm working with might have tweaked this theme, though I think I'm looking at a clean version of beta11.

When viewing the theme in Firefox (and Chrome) it displays with an incorrect wrapper background color because Firefox 5.0 is not autocorrecting the hex color value from 3 digits to 6. The issue makes the entire background dark. Fix the css/css3/css3_graphics.css file as shown below (must use full 6-digit color codes):

.cssgradients #contentWrapper{
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #eee),color-stop(0.05, #fff));
	background: -moz-linear-gradient(top center,#eee,#fff 5%);
}

change to

.cssgradients #contentWrapper{
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.0, #eeeeee),color-stop(0.05, #ffffff));
	background: -moz-linear-gradient(top center,#eeeeee,#ffffff 5%);
}

It's an odd tidbit with browsers that they act this way. Tested browsers/results on Win7 32 bit:

  • Internet Explorer 9.0.8112.16421 (9.0.1 update) - Good CSS, no problems
  • Mozilla Firefox 5.0 - Bad CSS interpretation, see above
  • Safari 5.0.5 (7533.21.1) - Good CSS, no problems
  • Opera 11.50 build 1074 - Good CSS, no problems
  • Chrome 13.0.782.55 beta-m - Menu CSS interpretation bad, main text is ok
CommentFileSizeAuthor
Marinelli css problem.png203.84 KBrack88
Support from Acquia helps fund testing for Drupal Acquia logo