Hi,
yes, that is possible. You would need some “Custom CSS” like
.wp-table-reloaded-id-123 {
background-image: url(image.png);
}
to apply the background to the table. Then you would have to remove the background from the rows and cells with this (so that the table’s background “shines through”):
.wp-table-reloaded-id-123 tr,
.wp-table-reloaded-id-123 th,
.wp-table-reloaded-id-123 td {
background: transparent;
}
Regards,
Tobias
hi Tobias, thanks for your answer. I used the same code you wrote down but still for some unexplained reason, the image is not shown at tha bg.
url is – http://www.asjewelry.net/jewelry/necklaces/necklace-2010
(table id-2)
thanks again for your help
Hi,
thanks for adding the changes!
Additionally, please turn off the “Alternating row colors” checkbox on the “Edit” screen of the table.
Now, after looking at your table, I actually assume that you want the entire table to be transparent, so that the background of the page shines through? Is that correct?
In that case, you don’t have to set the table background image, you can just remove all backgrounds entirely:
.wp-table-reloaded-id-2,
.wp-table-reloaded-id-2 tr,
.wp-table-reloaded-id-2 th,
.wp-table-reloaded-id-2 td {
background: transparent!important;
}
Regards,
Tobias
Tobias, you’re great! thanks! it looks good now. I might want to put a background image after all (a little lighter background, like my side menu), but I think now I can handle it. THANKS!
Hi,
no problem, you are very welcome!
Regards,
Tobias