I have an image and I would like to position another image and a link on top of it. So I have the following:
This positions my flag image and link where it want it, but it leaves an empty bar where they would normally be. How can I avoid this?
Code:
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<div id="picdiv"><img id="picimg" src="images/titleTim1.jpg"/></div>
<div id="Layer1" style="position:relative; bottom:30px; left:10px; z-index:1;">
<img src="images/flagPeru.gif" />
<a href="../sp/index.html" class="white_small">Español</a>
</div>
</td>
</tr>
This positions my flag image and link where it want it, but it leaves an empty bar where they would normally be. How can I avoid this?