Forum Moderators: open

Message Too Old, No Replies

Table header displays in bold

         

strings

7:21 am on May 27, 2008 (gmt 0)

10+ Year Member



The following message gets printed after the browser reads the hmtl.
The problem is the following message gets display in bold. i just want it to get displayed in normal form.
ple get me out of this.
thkns.
amit.

Sent to: xyx@msn.com Send By:
If you pefer not to receive
future e-mails of this type,
Leave this List

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="25%" scope="col" ><div align="left" >Sent to: xyx@msn.com</div></th>
<th width="20%" scope="col"><div align="center"></div></th>
<th width="55%" scope="col"><div align="left">Send By:</div></th>
</tr>
<tr>
<th scope="row"><div align="left">If you pefer not to receive </div></th>
<td><div align="center"><strong><font color="#004000" >Advertise ¦ Contact Us <font></strong></div></td>
<td>xyz.com</td>
</tr>
<tr>
<th scope="row"><div align="left">future e-mails of this type,</div></th>
<td><div align="center"></div></td>
<td>east side </td>
</tr>
<tr>
<th scope="row"><div align="left">Leave this List </div></th>
<td>&nbsp;</td>
<td>Florida 3hj</td>
</tr>
<tr>
<th scope="row">&nbsp;</th>
<td style="width:33%">&nbsp;</td>
<td>U.S.A</td>
</tr>
</table>

Zipper

8:36 am on May 27, 2008 (gmt 0)

10+ Year Member



The html tag <th> is for table headers which prints in bold. If you need to display regular text change it to <td> or use CSS to get rid of it.

Setek

8:42 am on May 27, 2008 (gmt 0)

10+ Year Member



It's because
<th>
s by default have
font-weight: bold;
set.

Change them to

<td>
s (since, from what I can see, it's not like you're using tables semantically for tabular data anyway) or set
<th>
s' font weight to normal:

th { font-weight: normal; }