I have a problem with overlapping background images which causes a darker shadow when they overlap than when they do not which creates an uneven shadow.
I have a box which is flexible in height with somewhat transparent background images with shadows to create nice borders. The box is essentially 3 elements.
You can find an image of the bottom left corner of the box here: http://img251.imageshack.us/i/overlappingbgs.png/
And the individual backgrounds here: http://img822.imageshack.us/g/bgtopm.png/
And the code for the box:
<div class="centerbox"> <!-- Background image fixed at the bottom. -->
<div class="head"> <!-- Background image fixed at the top. -->
...
</div>
<div class="body"> <!-- Vertically repeated background image. -->
...
</div>
</div>
As you can see, there is a darker shadow when the bottom and the repeated middle image overlap (the red area), because of the fact that the background image at the bottom is too tall.
I can not make the image smaller because sometimes that will create a gap in the shadow when there is a margin-bottom set for the last element in the element.
Anyone with any advice or suggestions of how I can fix this?