
06-24-2006, 04:01 PM
|
 |
SEO Junior
|
|
Join Date: Jun 2006
Posts: 22
|
|
you need to drop the negative on your z-index, and also add in the semi-colon you're missing at the end of the z-index definitions. Try this
Code:
<style type="text/css">
img.x
{
position:absolute;
left: 80px;
top: 10px;
z-index: 1;
}
img.y
{
position: absolute;
left: 775px;
top: 33px;
z-index: 1;
}
</style>
|