Hello,
I have a table and I would like to be able to set up a transparent div over the entire row to show that it is inaccessible at the moment.
Here is my a row from my table:
<tr id="post_1998">
<td id="post_1998_image">
...content...
</td>
<td class="description">
...more content...
</td>
<td class="buttons">
...even more content...
</td>
</tr>
Perhaps something like the following would be able to set the transparency but I don't know how you would construct the css.
<tr id="post_1998">
<td id="post_1998_image">
<div class="transparent">
...content...
</div>
</td>
<td class="description">
<div class="transparent">
...more content...
</div>
</td>
<td class="buttons">
<div class="transparent">
...even more content...
</div>
</td>
</tr>
Thanks!