Check out this website at
There seems to be an issue with the image being cut off.
I am looking to have the content in div contentTextWill
overlap the rightSideBar
. Is this achievable?
Below is the code snippet:
<div class="contentWrapper">
<div class="leftSideBar">
<img class="img-side top" src="images/leftSideTop.jpg" width="169" height="90" border="0" />
<img class="img-side bottom" src="images/leftSideBottom.jpg" width="169" height="90" border="0" />
</div><!--leftSideBar-->
<div class="content" id="content">
<div class="topContent">
<div class="contentTextWill">
</div><!--- This Div should overlay... --->
<div class="bottomContent">
</div><!--bottomContent-->
</div><!--content-->
<div class="rightSideBar">
<img class="img-side top" src="images/rightSideTop.jpg" width="169" height="90" border="0" />
<img class="img-side bottom" src="images/rightSideBottom.jpg" width="169" height="90" border="0" />
</div><!--rightSideBar--> <!--- Overlapping this div --->
</div><!--contentWrapper-->