PDA

View Full Version : How DO u make Custom Cell Backgrounds?


gforce75
09-20-2003, 02:23 AM
I'm trying to make custom cell backgrounds, but they all just produce that generic color. Putting html in the title or descrpition does nothing, so how do i do it? i'm stumped :)

Velocd
09-20-2003, 01:39 PM
<style type="text/css">
.custombg {
background-image: url(gradient.gif);
background-color: black;
background-position: top left;
background-repeat: repeat-x;
}
</style>

<td class="custombg"></td>

Like this?