View Full Version : What's up w/ this code?


Kat1984
02-15-2004, 09:05 PM
<div style="position: absolute; top: 52px; left: 164px;">
<table width="324" height="348" cellpadding="0" cellspacing="0" style="width:324; height:348;
border:0px dashed #000000; background-color:#000000;">

<tr><td align="left" valign="top"><font face="Arial" size="2" color="#ffffff">
To enlarge, right click on it. Photos, photos, photos! This is one's favourite section. I cautious you that ALL the
photos shown are of Jay Ferguson, so don't send emails asking for Chris ones. For the credits,
are at the very bottom. Sorry if I don't know who the photo's owner is, if you do, email to me,</a></td></font>
<td class="fieldname"><a href="mailto:macmasma@hotmail.com">Kathleen</td></tr>
</table></div>

There is something wrong with it cause the link "Kathleen" my name, goes way over to the side.

MaGiCSuN
02-15-2004, 09:07 PM
i hope this is a piece of a large html file, otherwise you are missing allot of tags :)

<tr><td align="left" valign="top"><font face="Arial" size="2" color="#ffffff">
To enlarge, right click on it. Photos, photos, photos! This is one's favourite section. I cautious you that ALL the
photos shown are of Jay Ferguson, so don't send emails asking for Chris ones. For the credits,
are at the very bottom. Sorry if I don't know who the photo's owner is, if you do, email to me,</a></td></font>
<td class="fieldname"><a href="mailto:macmasma@hotmail.com">Kathleen</td></tr>
</table></div>

the red </a> part should be deleted, becuase there is no <a> tag that is opening a link. Also the red </font> tag should be before the </td> tag, and not between a table cell since that has no use.

your email link should be closed with a </a>, becuase now it's an open link, and that could cause the problems you are having with it. if it still doesn't work, could you post the url to the site or give me the css information from the class fieldname ?

Love,
Mirna

Kat1984
02-15-2004, 09:30 PM
I really meant to a email link... and when I do that, it's well, still messed.

Where do I put the "<a href=" code at?


<tr><td align="left" valign="top"><font face="Arial" size="2" color="#ffffff">
To enlarge, right click on it. Photos, photos, photos! This is one's favourite section. I cautious you that ALL the
photos shown are of Jay Ferguson, so don't send emails asking for Chris ones. For the credits,
are at the very bottom. Sorry if I don't know who the photo's owner is, if you do, email to me,
</td></font><a href="mailto:macmasma@hotmail.com>Kathleen</a>
</table></div>

Rosey
02-16-2004, 02:16 AM
the reason it does that is because it's not in the td tag.

Reading your text you should do this:

<tr><td align="left" valign="top"><font face="Arial" size="2" color="#ffffff">
To enlarge, right click on it. Photos, photos, photos! This is one's favourite section. I cautious you that ALL the
photos shown are of Jay Ferguson, so don't send emails asking for Chris ones. For the credits,
are at the very bottom. Sorry if I don't know who the photo's owner is, if you do, email to me, <a href="mailto:macmasma@hotmail.com>Kathleen</a>
</font>
</td></tr>
</table></div>