Going through the default_style.css file it looks to me like it's turned off by default (i.e. there is no entry for it in the file)
the css file looks like this...
}
/* Table Ledger */ .tableLedger{ font-weight: bold; color: #FFFFFF; background-color: #7F7F99; height: 26px; }
|
Change it to this to add the image...
/* Table Ledger */
.tableLedger{ font-weight: bold; color: #FFFFFF; background-color: #7F7F99; background-image: url(../forum_images/table_bg_image.gif); height: 26px;
}
|
I'm not sure if the images dimension are still right to fit with the new sized table if not just resize the image in an image editor.
I can only guess that -boRg- done this to improve performance and bandwidth issues as using all CSS would save time and bandwidth over using an image.
Edited by Mikey - 16 April 2006 at 12:07am