S
Sixbells
Hello;
I am creating a sidebar for a website that is a cell within a table and has
a background picture, and I want to add a photo that stays in an absolute
position relative to the same cell. I thought the code below defined the
absolute position, but I was wrong. This is easy I am sure, but I have been
spending too much time figuring it out. This is the last hurtle before I can
do a beta release to the client.
Thanks in advance...
~~~~~~~~~~~~~~~
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Position Layers in Tables</title>
</head>
<body>
<div align="center">
<center>
<table border="0" cellpadding="0" style="border-style:solid;
border-width:1px; padding:0; border-collapse: collapse; width:390;
height:693" bordercolor="#000000" id="AutoNumber1" bgcolor="#FFFFFF">
<tr>
<td align="left" style="background-position: left center; margin:0;
padding:0px; font-family:Arial; font-size:12pt; letter-spacing:2;
color:#FFFFFF; font-weight:bold; text-align:center; word-spacing:0;
line-height:150%; text-indent:0; vertical-align:middle;
background-image:url('images/MBar390x693.jpg')" nowrap width="390"
height="693">
</td>
</tr>
</table>
</center>
</div>
<!-- Photo here, I want it to remain style="position: absolute; width:
252px; height: 315px; right: 50; top: 50" to the TR above -->
<img border="0" src="images/CSMPhoto252x315.jpg" style="position: absolute;
width: 252px; height: 315px; right: 283; top: 43">
<!-- DOESN'T WORK!! ;-P -->
</body>
</html>
~~~~~~~~~~~~~~~
Sixbells
I am creating a sidebar for a website that is a cell within a table and has
a background picture, and I want to add a photo that stays in an absolute
position relative to the same cell. I thought the code below defined the
absolute position, but I was wrong. This is easy I am sure, but I have been
spending too much time figuring it out. This is the last hurtle before I can
do a beta release to the client.
Thanks in advance...
~~~~~~~~~~~~~~~
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Position Layers in Tables</title>
</head>
<body>
<div align="center">
<center>
<table border="0" cellpadding="0" style="border-style:solid;
border-width:1px; padding:0; border-collapse: collapse; width:390;
height:693" bordercolor="#000000" id="AutoNumber1" bgcolor="#FFFFFF">
<tr>
<td align="left" style="background-position: left center; margin:0;
padding:0px; font-family:Arial; font-size:12pt; letter-spacing:2;
color:#FFFFFF; font-weight:bold; text-align:center; word-spacing:0;
line-height:150%; text-indent:0; vertical-align:middle;
background-image:url('images/MBar390x693.jpg')" nowrap width="390"
height="693">
</td>
</tr>
</table>
</center>
</div>
<!-- Photo here, I want it to remain style="position: absolute; width:
252px; height: 315px; right: 50; top: 50" to the TR above -->
<img border="0" src="images/CSMPhoto252x315.jpg" style="position: absolute;
width: 252px; height: 315px; right: 283; top: 43">
<!-- DOESN'T WORK!! ;-P -->
</body>
</html>
~~~~~~~~~~~~~~~
Sixbells