html question???!! PLEASE HELP?

  • Thread starter Thread starter Xmarkstheed
  • Start date Start date
X

Xmarkstheed

Guest
In the <td> tag, enter the image's height and width.

As in, for a 100Hx200W image, you would use:

<body>
<table width="200">
<tr>
<td background="cow.jpg" height="100" width="200">Hello This is a Test </td>
</tr>
</table>
</body>

If that does not work, try putting those setting in your <tr> tag as well.
 
I'm putting text over an image in my website numerous times. I use this code.

<body>
<table width="200">
<tr>
<td background="cow.jpg" height width>Hello This is a Test </td>
</tr>
</table>
</body>

Except.. when I do it the image doesn't show up unless the text I put in is the same wideth as the image... How can I make it so the image appears as a whole without the text pushing it to its width?
 
Back
Top