Within a table cell, I have around 7500 short text lines.
Interestingly, the background image of the table disappears around the 1800th line.
I'm wondering if there is a specific limit on the length of the table that could be causing this?
Even though the text in the cell remains visible until the end, the background is no longer displayed.
This particular table is identified as #story.
#story{
margin-top:15px;
border:medium ridge #FFF;
border-radius:9px;
background-image:url(img/back01.jpg);
}
I've also attempted:
background: url("img/back01.jpg") repeat; // unfortunately had no effect
background-color:#FFF; // using this does display color throughout the entire table.
}