I am experiencing an issue where the links within the "ad_left" div are not functioning as expected. I have tested this on multiple browsers and encountered the same problem each time. It's quite puzzling.
<style>
#ad_content .ad_left{
float: left;
margin-right: 12px;
position: relative;
}
#ad_content .ad_right{
position: relative;
}
#ad_content .ad_expand {
position: absolute;
right: 0;
bottom: 0;
}
</style>
<div id="ad_content">
<div class="ad_row">
<div class="ad_left">
<a href="#"><img src="images/ad_frleft.jpg" /></a>
<a href="#"><img class="ad_expand" src="images/expand.png" /></a>
</div>
<div class="ad_right">
<a href="#"><img src="images/ad_frright.jpg" /></a>
<a href="#"><img class="ad_expand" src="images/expand.png" /></a>
</div>
</div><!-- End Ad Row #1 -->
</div><!-- End Content -->