This can be hacked,
in 3.4.2 you need to edit bfa_header_config.php and change line 284 from
HTML Code:
$header_image .= '<div class="opacityleft"> </div>';
to
HTML Code:
$header_image .= '<div class="opacityleft"> </div><div class="opacityleftinner"> </div>';
then change line 288 from
HTML Code:
$header_image .= '<div class="opacityright"> </div>';
to
HTML Code:
$header_image .= '<div class="opacityrightinner"> </div><div class="opacityright"> </div>';
next you need to add a CSS insert
HTML Code:
/*-------------------- OPACITY LEFT INNER -----------------------*/
div.opacityleftinner {
position: absolute;
z-index: 2;
top: 0;
left: 200px;
background-color: #afffff;
height: 150px;
width: 200px;
filter: alpha(opacity=60);
-moz-opacity:.60;
opacity:.60;
}
/*-------------------- OPACITY RIGHT inner----------------------*/
div.opacityrightinner {
position: absolute;
z-index: 2;
top: 0;
right: 200px;
background-color: #afffff;
height: 150px;
width: 200px;
filter: alpha(opacity=60);
-moz-opacity:.60;
opacity:.60;
}
making sure to adjust all the numbers to match what you want - the #afffff will give you a light blue/green so you can see where it is