Hovering when the table background itself is an image
-
Hello,
Thank you very much for this wonderful plugin.I have a quick question.
I made background of a table with an image.. Like:-
——–
#main .tablepress
#main .tablepress tr,
#main .tablepress tbody td,
#main .tablepress thead th,
#main .tablepress tfoot th {
border: none;
background-image: url(/image1);
}
———Now I want a hovering effect with an image.. Like:-
———–
#main .tablepress .row-hover tr:hover td {
background-image: url(/Image2);
}
————-But this is not working..
Instead of Background image if I specify any particular color code as a background then hovering with an image is happening.. Below is the working code right now in my local MAMP srver.
—-
#main .tablepress .row-hover tr:hover td {
background-image: url(/Image2);
}#main .tablepress
#main .tablepress tr,
#main .tablepress tbody td,
#main .tablepress thead th,
#main .tablepress tfoot th {
border: none;
background-color: #5b5b5b;
}Thanks and Regards,
Ari..
- The topic ‘Hovering when the table background itself is an image’ is closed to new replies.