[Plugin: WP-Table Reloaded] Background color of table head—gradient issue
-
Hi Tobias,
First, let me say thanks for making such a great plug in and putting in so much time.I’m having a funny issue that I can’t figure out. I want to simply make all the table heads a linear gradient. But, if I set the css to background-color: for the gradient it does not show up. Only if I set the css to background: it works, but I lose the arrows.
I can’t figure out how to have the gradients show up and keep the arrows as well.
here is my css where the gradient does not show up:
.wp-table-reloaded-id-1 .sorting_asc, .wp-table-reloaded-id-1 .sorting_desc {
background-color: #cecece;
background-color: -moz-linear-gradient(top, #cecece, #ececec);
background-color: -webkit-gradient(linear, left top, left bottom, from(#cecece), to(#ececec));
}here is my css where the gradient shows up, but loses the arrows:
.wp-table-reloaded-id-1 th, .wp-table-reloaded-id-1 .sorting {
background: #ececec;
background: -moz-linear-gradient(top, #ececec, #cecece);
background: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(#cecece));
}
- The topic ‘[Plugin: WP-Table Reloaded] Background color of table head—gradient issue’ is closed to new replies.