I only tested this in "content bottom" but this behavior should happen in any region other than sidebar-right and sidebar-left. The issue is in style.css it uses ".block h2.block-title" to control the color and this works when the block is in sidebar-left or sidebar-right. In the other regions the background of h2.block-title is white rather than dark. The following change fixes the problem by moving "color: #fff" into where the sidebar-{left,right} block-title background is set.

diff -r 72ef4ef47601 sites/all/themes/pixture_reloaded/style.css
--- a/sites/all/themes/pixture_reloaded/style.css	Thu Aug 27 05:21:35 2009 +0000
+++ b/sites/all/themes/pixture_reloaded/style.css	Thu Aug 27 05:46:49 2009 +0000
@@ -298,6 +298,7 @@
 #sidebar-left h2.block-title,
 #sidebar-right h2.block-title {
   background: url("images/block-tl.png") no-repeat top left;
+  color: #FFF;
 }
 #sidebar-left .block-inner,
 #sidebar-right .block-inner {
@@ -314,7 +315,6 @@
   padding: 10px 15px 5px 15px;
 }
 .block h2.block-title {
-  color: #FFF;
   font-size: 12px;
   font-weight: bold;
 	 height: 22px;

Comments

Jeff Burnz’s picture

Wow, I had it in memory I had fixed that ages and ages ago, obviously not! Will be addressed in the new version, right now I dont want to put out another version of the 3x series.