Advertisement
_Pandora

Remove Player Box Icons

Sep 16th, 2023 (edited)
823
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.32 KB | None | 0 0
  1. /* Codes made by Pandora #144118 and Moses #95222
  2. Codes may be edited, used in commissions or for personal use
  3. Please do not remove credit
  4. */
  5.  
  6. /* REMOVE ICONS (message/gift/create trade/wishlist/view trades) */
  7.  
  8. #player > tbody > tr.right > td:nth-child(1) > div.xlarge > a:nth-child(1) {
  9.     font-size:0px;
  10. }  
  11.  
  12. #player > tbody > tr.right > td:nth-child(1) > div.xlarge > a:nth-child(1)::after {
  13.     content:'Message';
  14.     font-size:18px;
  15. }
  16.  
  17. #player > tbody > tr.right > td:nth-child(1) > div.xlarge > a:nth-child(3) {
  18.     font-size:0px;
  19. }  
  20.  
  21. #player > tbody > tr.right > td:nth-child(1) > div.xlarge > a:nth-child(3)::after {
  22.     content:'Send Gift!';
  23.     font-size:18px;
  24. }
  25.  
  26. #player > tbody > tr.right > td:nth-child(1) > div.xlarge > a:nth-child(5) {
  27.     font-size:0px;
  28. }
  29.  
  30. #player > tbody > tr.right > td:nth-child(1) > div.xlarge > a:nth-child(5)::after {
  31.     content:'Create Trade';
  32.     font-size:18px;
  33. }
  34.  
  35. #player > tbody > tr.right > td:nth-child(1) > p > a:nth-child(1) {
  36.     font-size:0px;
  37. }
  38.  
  39. #player > tbody > tr.right > td:nth-child(1) > p > a:nth-child(1)::after {
  40.     content:'View Wishlist';
  41.     font-size:14px;
  42. }
  43.  
  44. #player > tbody > tr.right > td:nth-child(1) > p > a:nth-child(3) {
  45.     font-size:0px;
  46. }
  47.  
  48. #player > tbody > tr.right > td:nth-child(1) > p > a:nth-child(3)::after {
  49.     content:'View Trades';
  50.     font-size:14px;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement