Hi,
Here is a link to my side by side div's: http://jsfiddle.net/cMpaE/
Or you can view my code below (it's the same for both, but if you go to the above link you can see a preview)
<div id="logoBlock" style="float:left; background-color:#CF6; width:15%; min-height:120px; border-top-left-radius:5px; border-bottom-left-radius:5px; margin-bottom:2%;">
<center>
logoBlock
</center>
</div>
<div id="promotionBlock" style="float:left; background-color:#FFE6E7; width:15%; min-height:120px; margin-bottom:2%;">
promotionBlock
</div>
<div id="descriptionBlock" style="float:left; background-color:#CCD9F7; width:60%; min-height:120px; max-height:120px; overflow:hidden; border-top-right-radius:5px; border-bottom-right-radius:5px; margin-bottom:2%;">
descriptionBlock
</div>
I would like to make them have an inner shadow with "box-shadow:inset" however this creates the inner shadow for each div. I would like the inner shadow to look like its only one div.
Can someone help me do this? I'm finding this pretty hard, thanks so much for your time.