I'm trying to place an image above an image rotator, but it just moves the rotator content down:
How can I get it not to interfere with the lower content?
Live:
Apologies for the tables - as you can see, I've not fully embraced CSS!!
Code:
<table width="920" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>
<img src="phpimages/LXY_Store_sticker.png" alt="LXY Online Store" class="hoverimg" />
<div class="fadein">
<img src="phpimages/LXY_trans1.jpg">
<img src="phpimages/LXY_trans2.jpg">
<img src="phpimages/LXY_trans3.jpg">
<img src="phpimages/LXY_trans4.jpg">
</div>
</td>
</tr>
</table>
How can I get it not to interfere with the lower content?
Live:
CSS:
html, body {
background-color: #23002C;
padding: 0;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 20px;
}
a:link,
a:visited {
text-decoration:none;
color:#666;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
}
a:hover,
a:active {
text-decoration:none;
color:#FF0000;
}
.oddtext{
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 14px;
color: #000; text-decoration: none;
text-align: left;
}
.oddwhitetext{
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px;
color: #fff; text-decoration: none;
text-align: left;
}
.noddtext{
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
color: #fff; text-decoration: none;
text-align: left;
}
.footerHeader{
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 20px;
color: #000; text-decoration: none
text-align: left;
}
.fadein { position:relative; width:920px; height:461px; }
.fadein img { position:absolute; left:0; top:0; }
.hoverimg
{
position:relative;
left: 400px;
top:400px;
z-index:10;
}
Apologies for the tables - as you can see, I've not fully embraced CSS!!