In article <62763026-931f-488c-b05b->,
Nooner Lenovo <> wrote:
>Hello,
>
>In the below HTML table it works fine in IE but
>when I looked at it in Chrome or FireFox it has
>double backgroungs in my table and is too big
>(which I think is why there is doubling of the
>background images). I use real text with a shadow
>background image (so google can read it) to give
>the text a nice look, and use the background to put
>some flurishes and other images. So why the
>differences?
Your table is mal-formatted.
I've taken the liberty to remove the nbsp entries and
properties and pretty-print so you can see the structure:
<table>
<tr>
<td colspan="3" align="center">
1 <br><center>
<H1>TiTle</H1>
</td>
</tr>
<tr>
<td> </td>
<td><br><h2><center>Blah Blah Blah</h2></td>
<td> </td>
</tr>
<tr>
<td> </td>
2 <td><h3><center><br>Blah Blah Blah</h3>
<td> </td>
3 </td>
</tr>
4 </center>
</table>
1: unterminated <center> tag.
was that tag even needed, since you set align=center?
2 unterminated <td> tag
3 extraneous </td>
4 extraneous </center>
Also, are you allowed to use <h1>, etc. in a <td>? Not sure.
But because of errors 1-4, it's catch-as-catch-can what the browser will
do with it.
Other than that, other posters are right; you should be using CSS.
--
-Ed Falk,
http://thespamdiaries.blogspot.com/