Aurangajeb

Hide the Status, Payment Column from the Dashboard

Feb 7th, 2020 (edited)
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.30 KB | None | 0 0
  1. /** Hide the Status Column from the Dashboard **/
  2. th:nth-of-type(2) {
  3.     visibility: collapse;
  4. }
  5. td:nth-of-type(2) {
  6.     visibility:collapse;
  7. }
  8.  
  9. /** Hide the Payment Column from the Dashboard **/
  10. th:nth-of-type(3) {
  11.     visibility: collapse;
  12. }
  13. td:nth-of-type(3) {
  14.     visibility:collapse;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment