I have a problem with my css background image. It only seems to extend down the page through 100% of the content and does not completely fill up the cell. I have three different repeating gradient background images to use in different places on the page. The style code in the head is:
h1 {
background-image:url(images/Gradient_BG-800.jpg);
background-repeat:repeat-y;
margin:0 auto;
}
h2 {
background-image:url(images/Gradient_BG-400-left.jpg);
background-repeat:repeat-y;
margin:0 auto;
}
h3 {
background-image:url(images/Gradient_BG-400-right.jpg);
background-repeat:repeat-y;
margin:0 auto;
}
The h1
works fine but the h2
and h3
don't fill the entire background of their respective <td>
cells. the degree of fill seems related to the content.
Here are the details of the <td>
cells:
<tr>
<td align="center" valign="top" width="400" height="150"><h2>
<img src="images/spacer.gif" height="150" width="90" alt="" border="" align="left">
<span class="yellowfont3">CONTACT THE BAND</span><br><br>
<span class="whitefont2">DAVID CLARK<br>
L.I. PARAMOUNT MUSIC & ENTERTAINMENT</span><br>
<span class="smallbluelinks"><a href="mailto:dave@invisiblesunband.com">dave@invisiblesunband.com</a></span><br>
<span class="whitefont3">(516) 721-5344 Cell<br>
(516) 932-2263 x16, Office</span></h2>
</td>
<td align="center" valign="top" width="400" height="150"><h3>
<img src="images/spacer.gif" height="150" width="90" alt="" border="0" align="right">
<span class="bigyellowlinks"><a href="shows.htm">Click Here for<br>
INVISIBLE SUN DATES</a></span><br>
<br>
<span class="bigbluelinks">
<a target="_blank" href="http://www.myspace.com/invisiblesunpolicetribute">
Visit us at myspace</a></span><br>
</h3>
</td>
</tr>
The problem manifests this way:
http://invisiblesunband.com/Broken_Background_Image.png
Thanks so much for any help or suggestions!